My build of nnn with minor changes
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

25 строки
658 B

  1. #!/usr/bin/env sh
  2. # Description: Check and update to latest version of nnn manually on Debian 9 Stretch
  3. #
  4. # Shell: POSIX-compliant
  5. # Author: Arun Prakash Jana
  6. # NOTE: This script installs a package, should be issued with admin privilege
  7. cur="$(nnn -v)"
  8. new="$(curl -s "https://github.com/jarun/nnn/releases/latest" | grep -Eo "[0-9]+\.[0-9]+")"
  9. if [ "$cur" = "$new" ]; then
  10. echo 'Already at latest version'
  11. exit 0
  12. fi
  13. # get the package
  14. curl -Ls -O "https://github.com/jarun/nnn/releases/download/v$new/nnn_$new-1_debian9.amd64.deb"
  15. # install it
  16. sudo dpkg -i nnn_"$new"-1_debian9.amd64.deb
  17. # remove the file
  18. rm -rf nnn_"$new"-1_debian9.amd64.deb