6 lines
114 B
Bash
Executable file
6 lines
114 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
filename=$1
|
|
touch "$filename"
|
|
chmod +x "$filename"
|
|
echo "#!/usr/bin/env bash" >> "$filename"
|