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.
|
- #!/bin/sh
-
- # Create test files and directories
-
- test -e test && {
- echo "Remove test and try again"
- exit 1
- }
-
- mkdir test && cd test
-
- echo 'It works!' > normal.txt
- echo 'Με δουλέβει;' > 'κοινό.txt'
- ln -s normal.txt ln-normal.txt
- ln -s normal.txt ln-normal
- mkdir normal-dir
- ln -s normal-dir ln-normal-dir
- ln -s nowhere ln-nowhere
- mkfifo mk-fifo
- touch no-access && chmod 000 no-access
- mkdir no-access-dir && chmod 000 no-access-dir
- ln -s ../normal.txt normal-dir/ln-normal.txt
- ln -s ../normal.txt normal-dir/ln-normal
- echo 'int main(void) { *((char *)0) = 0; }' > ill.c
- make ill > /dev/null
- echo 'test/ill' > ill.sh
- mkdir empty-dir
- mkdir cage
- echo 'chmod 000 test/cage' > cage/lock.sh
- echo 'chmod 755 test/cage' > cage-unlock.sh
- mkdir cage/lion
- echo 'chmod 000 test/cage' > cage/lion/lock.sh
|