2021-09-18 21:04:50 +00:00
|
|
|
# Utilities regarding file system navigation
|
|
|
|
|
|
|
|
# Useful when the current directory was recreated
|
|
|
|
alias rcd="cd $PWD"
|
|
|
|
# cd into the parent if arg is a file
|
|
|
|
cdd() { cd "$@" 2>/dev/null || cd "$(dirname "$1")" "${@:2}" }
|
|
|
|
|
|
|
|
# Go up a number of dirs
|
|
|
|
up() {
|
2021-09-21 20:32:35 +00:00
|
|
|
if [[ $# < 1 ]] ; then
|
|
|
|
cd ..
|
|
|
|
else
|
|
|
|
CDSTR=""
|
|
|
|
for i in {1..$1} ; do
|
|
|
|
CDSTR="../$CDSTR"
|
|
|
|
done
|
|
|
|
cd $CDSTR
|
|
|
|
fi
|
2021-09-18 21:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Switch directory & ls
|
|
|
|
cl() {
|
2021-09-21 20:32:35 +00:00
|
|
|
builtin cd $1
|
|
|
|
ls --almost-all --group-directories-first --file-type
|
2021-09-18 21:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mkcd() {
|
2021-09-21 20:32:35 +00:00
|
|
|
mkdir -p "$1" && cd "$1"
|
2021-09-18 21:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cd() {
|
2021-09-24 18:20:29 +00:00
|
|
|
if test -d "$DATA" && test "$1" != "-" -a ! -d "$1" -a $# -eq 1
|
|
|
|
then
|
|
|
|
dir=$(fd --no-ignore --glob "$1*" "$DATA" --maxdepth 2 --type d --max-results 1)
|
|
|
|
test -n "$dir" && cd "$dir"
|
|
|
|
else
|
|
|
|
builtin cd $1 &&
|
2021-09-21 20:32:35 +00:00
|
|
|
command ls --file-type --group-directories-first --color=always --format=vertical -w $COLUMNS | head -3
|
2021-09-24 18:20:29 +00:00
|
|
|
fi
|
2021-09-18 21:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# ZOXIDE
|
|
|
|
alias c=z
|
|
|
|
d() {
|
|
|
|
test "$1" != "-" -a ! -d "$1" -a $# -eq 1 || { cd "$@" && return }
|
|
|
|
local query="$(zf "$@")"
|
|
|
|
# First find out whether there is an obvious match
|
|
|
|
# (score at least ten times above runner-up and score above 20)
|
|
|
|
# If not select with fzf, using locate to find extra options
|
2021-10-12 09:29:05 +00:00
|
|
|
cd "$(if expr "$(echo "$query" | head -1 | cut -d' ' -f1)" \> 20 \& $(echo "$query" | sed 'N;s|/.* \([0-9]\)|> 10 * \1|;q' | sed 's| */.*||') >/dev/null #2>&1
|
2021-09-18 21:04:50 +00:00
|
|
|
then echo "$query" | head -1
|
|
|
|
else echo "$query"; locz "$@"
|
|
|
|
fi | zfz)"
|
|
|
|
}
|
|
|
|
di() {
|
2021-09-24 18:20:29 +00:00
|
|
|
test $# -eq 1 && test "$1" = "-" -o -d "$1" || local dir=$({ zf "$@"; locz "$@" } | zfz)
|
2021-10-11 08:02:14 +00:00
|
|
|
cd "${dir:-$1}"
|
2021-09-18 21:04:50 +00:00
|
|
|
}
|