My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

1234567891011121314151617181920
  1. #!/usr/bin/env sh
  2. # Description: Toggles executable mode for selection
  3. #
  4. # Dependencies: chmod
  5. #
  6. # Note: Works _only_ with selection (nnn can toggle the mode for the hovered file)
  7. #
  8. # Shell: POSIX compliant
  9. # Author: Arun Prakash Jana
  10. selection=${NNN_SEL:-${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection}
  11. if [ ! -s "$selection" ]; then
  12. printf "0 selected "
  13. read -r _
  14. exit
  15. fi
  16. xargs -0 -I {} sh -c 'if [ -x "{}" ] ; then chmod -x "{}" ; else chmod +x "{}" ; fi' < "$selection"