mirror of
https://github.com/jarun/nnn.git
synced 2024-11-01 00:47:18 +00:00
12 lines
183 B
Bash
12 lines
183 B
Bash
export NNN_TMPFILE="/tmp/nnn"
|
|
|
|
n()
|
|
{
|
|
nnn "$@"
|
|
|
|
if [ -f $NNN_TMPFILE ]; then
|
|
. $NNN_TMPFILE
|
|
rm -f $NNN_TMPFILE > /dev/null
|
|
fi
|
|
}
|