aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/quitcd/quitcd.bash
blob: a4482e458e1250ff9e1400c4a8e770df8c6b2336 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export NNN_TMPFILE="/tmp/nnn"

n()
{
        nnn "$@"

        if [ -f $NNN_TMPFILE ]; then
                . $NNN_TMPFILE
                rm -f $NNN_TMPFILE > /dev/null
        fi
}