aboutsummaryrefslogtreecommitdiff
path: root/tools/delete-feature-template.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/delete-feature-template.sh')
-rwxr-xr-xtools/delete-feature-template.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/delete-feature-template.sh b/tools/delete-feature-template.sh
index 47218a0..29484dd 100755
--- a/tools/delete-feature-template.sh
+++ b/tools/delete-feature-template.sh
@@ -1,5 +1,16 @@
#!/bin/bash
+if [ "$1" = "-h" ] || [ "$1" = "--help" ] || [ "$1" = "-?" ]; then
+ cat <<EOF
+./delete-feature-template.sh [ProjectName] [FeatureName]
+
+Example: ./delete-feature-template.sh CarShop Car
+
+For more information: https://gitlab.com/Syndamia/it-kariera-exam-template#delete-feature-template
+EOF
+ exit
+fi
+
if [ -z "$1" ] || [ -z "$2" ]; then
echo "No name supplied!"
exit