mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 18:23:15 +02:00
chore: put dispaly help in function
This commit is contained in:
parent
58686dccc4
commit
c9d16e53f6
@ -1,10 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
while getopts ":h" option; do
|
||||
echo "This script modifies file names"
|
||||
echo "-l lowerize file names"
|
||||
echo "-u uppercase file names"
|
||||
echo "-r recurse into directory"
|
||||
echo "[-r] <sed pattern> specify sed pattern that will be executed on file names"
|
||||
echo "-h show this help information"
|
||||
done
|
||||
show_help() {
|
||||
local OPTIND
|
||||
while getopts ":h" opt ; do
|
||||
echo "This script modifies file names"
|
||||
echo "-l lowerize file names"
|
||||
echo "-u uppercase file names"
|
||||
echo "-r recurse into directory"
|
||||
echo "[-r] <sed pattern> specify sed pattern that will be executed on file names"
|
||||
echo "-h show this help information"
|
||||
done
|
||||
}
|
||||
|
||||
show_help "$@"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user