My build of nnn with minor changes
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- #!/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
|