feat: add help option modify.sh

This commit is contained in:
Krzysztof Rudnicki 2022-03-18 13:12:00 +01:00
parent e062dbf4c5
commit 58686dccc4
2 changed files with 10 additions and 0 deletions

10
EOPSY/task1/modify.sh Executable file
View File

@ -0,0 +1,10 @@
#!/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

View File