My build of nnn with minor changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 5 година
12345678910111213141516171819
  1. #!/usr/bin/env sh
  2. # Description: Update nnn plugins
  3. #
  4. # Shell: POSIX compliant
  5. # Author: Arun Prakash Jana
  6. # backup any earlier plugins
  7. if [ -d ~/.config/nnn/plugins ]; then
  8. tar -C ~/.config/nnn/ -cf ~/.config/nnn/"plugins-$(date '+%Y%m%d%H%M').tar.bz2" plugins/
  9. fi
  10. mkdir -p ~/.config/nnn/plugins
  11. cd ~/.config/nnn/plugins
  12. wget -nv --show-progress https://github.com/jarun/nnn/archive/master.tar.gz
  13. tar -xf master.tar.gz
  14. cp -vf nnn-master/plugins/* .
  15. sudo mv -vf nnn-master/scripts/nlaunch/nlaunch /usr/local/bin/
  16. rm -rf nnn-master/ master.tar.gz README.md