1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-03-11 17:24:06 +00:00
nnn/misc/quitcd/quitcd.zsh
2019-07-09 22:51:25 +03:00

11 lines
186 B
Bash

n()
{
export NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd
nnn "$@"
if [ -f $NNN_TMPFILE ]; then
. $NNN_TMPFILE
rm $NNN_TMPFILE
fi
}