2022-08-19 08:55:21 -07:00
|
|
|
#!/usr/bin/env sh
|
2022-08-18 16:33:31 -07:00
|
|
|
|
|
|
|
|
# Create some files and directories in the current folder
|
|
|
|
|
echo 'hello' > hello.txt
|
|
|
|
|
mkdir subdir
|
|
|
|
|
echo 'world' > subdir/world.txt
|
|
|
|
|
|
|
|
|
|
# Add some symlinks (which we should dereference properly when archiving)
|
|
|
|
|
ln -s subdir subdir-link
|
|
|
|
|
ln -s hello.txt bonjour.txt
|