mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 01:42:55 +00:00
9 lines
95 B
Bash
9 lines
95 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = "--help" ] || [ "$1" = "-h" ]; then
|
|
cat <<EOH
|
|
Help text
|
|
EOH
|
|
exit
|
|
fi
|