My build of nnn with minor changes
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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