v0.01 #2

Merged
jarno merged 6 commits from dev into master 2020-08-01 20:45:41 +03:00
1 changed files with 13 additions and 0 deletions
Showing only changes of commit 187673cbd4 - Show all commits

13
snapsh
View File

@ -16,4 +16,17 @@
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
help() {
printf "Usage:
snapsh [OPTIONS]
Options:
Exit codes:
2 - Invalid arguments"
}
# If no options are given, display help
if [[ "$#" -eq 0 ]]; then
help
exit 2
fi