blob: 09c1e50418b67b2e0390f371a2c5f830522fe7b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# CD into chosen directory, otherwise terminate
fcd() {
cd "$(fd -t d -E Digital/D1 -E /home/black/Games | fzf --reverse || exit)"
}
fcd
if [ $? -eq 0 ]; then
exec "$SHELL" #-i
fi
|