My build of nnn with minor changes
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

12 wiersze
203 B

  1. #!/usr/bin/env sh
  2. # Description: Paste contents of a text a file http://ix.io
  3. #
  4. # Shell: POSIX compliant
  5. # Author: Arun Prakash Jana
  6. if ! [ -z "$1" ]; then
  7. curl -F "f:1=@$1" ix.io
  8. read -r _
  9. fi