diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-06-24 01:26:03 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-06-24 01:26:03 +0300 |
commit | f493668bd5af77ddd7ffa1a877146d729865bd9d (patch) | |
tree | db263287740a8cda8e5fc111a13c10b0b4b6cd7b /bin/ak-template | |
parent | 1f8d96cbabd235a40645d856b75b412438b0c2bc (diff) | |
download | arching-kaos-tools-f493668bd5af77ddd7ffa1a877146d729865bd9d.tar.gz arching-kaos-tools-f493668bd5af77ddd7ffa1a877146d729865bd9d.tar.bz2 arching-kaos-tools-f493668bd5af77ddd7ffa1a877146d729865bd9d.zip |
Refactoring
Diffstat (limited to 'bin/ak-template')
-rwxr-xr-x | bin/ak-template | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ak-template b/bin/ak-template index 151d9d7..362b22e 100755 --- a/bin/ak-template +++ b/bin/ak-template @@ -20,7 +20,8 @@ example(){ } # Flags to run -if [ ! -z $1 ]; then +if [ ! -z $1 ] +then case $1 in -h | --help) _ak_usage; exit;; --example) example; exit;; |