Update scripts

This commit is contained in:
Arun Prakash Jana 2017-04-29 12:09:26 +05:30
parent 64d06ccaee
commit bac4c27191
No known key found for this signature in database
GPG key ID: A75979F35C080412
4 changed files with 15 additions and 4 deletions

View file

@ -59,7 +59,7 @@ Have fun with it! PRs are welcome. Check out [#1](https://github.com/jarun/nnn/i
- Super-easy navigation with roll-over at edges
- Jump HOME or back to the last visited directory (as usual!)
- Jump to initial dir, chdir prompt, cd ..... (with . as PWD)
- Search-as-you-type
- Filter directory contents with search-as-you-type
- Desktop opener integration to handle mime types
- Customizable bash script nlay to handle known file types
- Disk usage analyzer mode

View file

@ -2,7 +2,12 @@ export NNN_TMPFILE="/tmp/nnn"
n()
{
if [ -n "$1" ]; then
nnn -d "$1"
else
nnn -d
fi
if [ -f $NNN_TMPFILE ]; then
. $NNN_TMPFILE
rm $NNN_TMPFILE

View file

@ -1,7 +1,8 @@
export NNN_TMPFILE="/tmp/nnn"
function n --description 'support nnn quit and change directory'
nnn -d
nnn -d $argv[1]
if test -e $NNN_TMPFILE
. $NNN_TMPFILE
rm $NNN_TMPFILE

View file

@ -2,7 +2,12 @@ export NNN_TMPFILE="/tmp/nnn"
n()
{
if [ -n "$1" ]; then
nnn -d "$1"
else
nnn -d
fi
if [ -f $NNN_TMPFILE ]; then
. $NNN_TMPFILE
rm $NNN_TMPFILE