aboutsummaryrefslogtreecommitdiffstats
path: root/mktest.sh
blob: 8ab7be5028b766d796a360e0c54d58216fbb3e74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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
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
ln -s ../normal.txt normal-dir/ln-normal.txt
ln -s ../normal.txt normal-dir/ln-normal