Gambai ve diğer önerilen varyantlarına kıyasla daha iyi bir cevapla başka bir yerde benzer bir soru üzerine tökezledim . O zamandan beri daha iyi.
- oluşturulan dosyayı sistem tarafından silinebilmesi için tmp klasörüne koyarak ilgilenir.
- daha temiz bir koddur ( Gambai'nin cevabı bir fonksiyona dönüştürülebilir)
Bir kabuk dosyasında zaten ranger'ın git repo'sunda bir işlev vardır:
https://github.com/ranger/ranger/blob/master/examples/bash_automatic_cd.sh
function ranger-cd {
# create a temp file and store the name
tempfile="$(mktemp -t tmp.XXXXXX)"
# run ranger and ask it to output the last path into the
# temp file
ranger --choosedir="$tempfile" "${@:-$(pwd)}"
# if the temp file exists read and the content of the temp
# file was not equal to the current path
test -f "$tempfile" &&
if [ "$(cat -- "$tempfile")" != "$(echo -n `pwd`)" ]; then
# change directory to the path in the temp file
cd -- "$(cat "$tempfile")"
fi
# its not super necessary to have this line for deleting
# the temp file since Linux should handle it on the next
# boot
rm -f -- "$tempfile"
}
Bu işlevi sık kullanılanınızın shell rc (örneğin ~/.zshrc
) dosyasına koyabilir ve takma ad oluşturabilir ve / veya bir tuş bileşimine bağlayabilirsiniz (yine her ikisi de rc dosyasına girebilir):
alias nav=ranger-cd
ve / veya
# This will run the function by Ctrl+O through returning
# the string "ranger-cd" in addition to a new-line character
# to act as Enter key-press
bindkey -s "^o" "ranger-cd\n"
: Yasal Uyarıbindkey
ZSH yukarıdaki çalışır ve tercih ettiğiniz kabuk dayalı değiştirmek gerekir
;
ve daha sonra yarı kolondan sonra daha fazla komut belirtebilirsiniz - Ben yakın noktada çalışıyorum varsayalımranger
, teşekkürler!