mirror of
https://github.com/awfixers-stuff/src.git
synced 2026-03-27 12:56:19 +00:00
10 lines
185 B
Bash
Executable File
10 lines
185 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu -o pipefail
|
|
|
|
mkdir a b c
|
|
echo "#!/a/x.exe" > a/x.exe
|
|
echo "#!/a/x" > a/x
|
|
echo "#!/b/exe" > b/exe
|
|
echo "#!/b/exe.com" > b/exe.com
|
|
echo "#!/c/x.exe" > c/x.exe
|