mirror of
https://github.com/jarun/nnn.git
synced 2024-11-09 12:53:11 +00:00
fa4f082ac0
The new location is ~/.config/nnn/.lastd
12 lines
155 B
Bash
12 lines
155 B
Bash
n()
|
|
{
|
|
nnn "$@"
|
|
|
|
NNN_TMPFILE=~/.config/nnn/.lastd
|
|
|
|
if [ -f $NNN_TMPFILE ]; then
|
|
. $NNN_TMPFILE
|
|
rm $NNN_TMPFILE
|
|
fi
|
|
}
|