My build of nnn with minor changes
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

22 satır
441 B

  1. #!/bin/sh
  2. # Create test files and directories
  3. test -e test && {
  4. echo "Remove test and try again"
  5. exit 1
  6. }
  7. mkdir test && cd test
  8. echo 'It works!' > normal.txt
  9. ln -s normal.txt ln-normal.txt
  10. ln -s normal.txt ln-normal
  11. mkdir normal-dir
  12. ln -s normal-dir ln-normal-dir
  13. ln -s nowhere ln-nowhere
  14. mkfifo mk-fifo
  15. touch no-access && chmod 000 no-access
  16. ln -s ../normal.txt normal-dir/ln-normal.txt
  17. ln -s ../normal.txt normal-dir/ln-normal