mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-10 01:18:06 +01:00
8 lines
120 B
Bash
Executable file
8 lines
120 B
Bash
Executable file
#!/bin/bash
|
|
# +x [file]
|
|
# make a file executable
|
|
if [ -z "$1" ]; then
|
|
echo "usage: +x [file]"
|
|
exit 1
|
|
fi
|
|
chmod +x $@
|