-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathhelp
More file actions
executable file
·24 lines (23 loc) · 659 Bytes
/
help
File metadata and controls
executable file
·24 lines (23 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash
echo "CLI (Command Line Interface) Usage:"
echo
echo " $ snuggsi <command> [<resource> <resource> ...]"
echo
echo "<command> is one of the following:"
echo
echo " help Help documentation"
echo " test Test suite runner"
echo " crank Crank it up baby!"
echo " integrate Continuous Integration"
echo
echo "<path> is the *optional* location(s) of 1 or more resources."
echo "The current directory (.) is used by default."
echo
echo " $ snuggsi test"
echo
echo "Example usage on ./products directory:"
echo
echo " $ snuggsi test products"
echo
echo "🎉 Enjoy! 🎉"
echo