Skip to content

Instantly share code, notes, and snippets.

View J4Numbers's full-sized avatar

J4Numbers J4Numbers

View GitHub Profile
@J4Numbers
J4Numbers / create.sh
Created November 11, 2016 13:37
Typical creation script
#!/bin/bash
function toucher()
{
echo "Creating file $1.$2 in the $INSTRUCT project...";
touch $MAINPROJ/$SUBPROJ/$3/$1.$2;
echo "File has been created.";
}
function showHelp()