My build of nnn with minor changes
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mktest.sh 490 B

12345678910111213141516171819202122
  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. echo 'Με δουλέβει;' > 'κοινό.txt'
  10. ln -s normal.txt ln-normal.txt
  11. ln -s normal.txt ln-normal
  12. mkdir normal-dir
  13. ln -s normal-dir ln-normal-dir
  14. ln -s nowhere ln-nowhere
  15. mkfifo mk-fifo
  16. touch no-access && chmod 000 no-access
  17. ln -s ../normal.txt normal-dir/ln-normal.txt
  18. ln -s ../normal.txt normal-dir/ln-normal