1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-03-30 18:16:33 +00:00
nnn/misc/quitcd/quitcd.bash

11 lines
165 B
Bash
Raw Normal View History

2017-04-19 18:22:30 +05:30
export NNN_TMPFILE="/tmp/nnn"
n()
{
nnn -d
if [ -f $NNN_TMPFILE ]; then
. $NNN_TMPFILE
rm $NNN_TMPFILE
fi
}