diff options
author | 2019-04-19 19:04:20 +0530 | |
---|---|---|
committer | 2019-04-19 19:06:03 +0530 | |
commit | d5107d28ac41201e764a168c43f2931b6d44854c (patch) | |
tree | b978e31f76cac08ff7c0d5dc1a476c009812b074 /plugins/getplugs | |
parent | 430945d42063482cc2485dfec541a851df4f7556 (diff) | |
download | nnn-d5107d28ac41201e764a168c43f2931b6d44854c.tar.gz |
Plugin getplugs: update nnn plugins
Diffstat (limited to 'plugins/getplugs')
-rwxr-xr-x | plugins/getplugs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/getplugs b/plugins/getplugs new file mode 100755 index 0000000..6c74336 --- /dev/null +++ b/plugins/getplugs @@ -0,0 +1,11 @@ +#!/usr/bin/env sh + +# Description: Update nnn plugins +# +# Shell: POSIX compliant +# Author: Arun Prakash Jana + +wget -nv --show-progress https://github.com/jarun/nnn/archive/master.tar.gz +tar -xf master.tar.gz +cp -vf nnn-master/plugins/* . +rm -rf nnn-master/ master.tar.gz README.md |