mirror of
https://github.com/jarun/nnn.git
synced 2024-11-04 18:33:12 +00:00
11 lines
165 B
Bash
11 lines
165 B
Bash
|
export NNN_TMPFILE="/tmp/nnn"
|
||
|
|
||
|
n()
|
||
|
{
|
||
|
nnn -d
|
||
|
if [ -f $NNN_TMPFILE ]; then
|
||
|
. $NNN_TMPFILE
|
||
|
rm $NNN_TMPFILE
|
||
|
fi
|
||
|
}
|