1
0
Fork 0
mirror of https://github.com/jarun/nnn.git synced 2025-03-11 17:24:06 +00:00
nnn/plugins/getplugs

15 lines
399 B
Text
Raw Normal View History

2019-04-19 19:04:20 +05:30
#!/usr/bin/env sh
# Description: Update nnn plugins
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
2019-04-30 08:36:55 +05:30
mkdir -p ~/.config/nnn/plugins
cd ~/.config/nnn/plugins
2019-04-19 19:04:20 +05:30
wget -nv --show-progress https://github.com/jarun/nnn/archive/master.tar.gz
tar -xf master.tar.gz
cp -vf nnn-master/plugins/* .
2019-05-05 08:20:35 +05:30
sudo mv -vf nnn-master/scripts/nlaunch/nlaunch /usr/local/bin/
2019-04-19 19:04:20 +05:30
rm -rf nnn-master/ master.tar.gz README.md