Return to Snippet

Revision: 40874
at February 9, 2011 06:31 by jackkeller


Initial Code
#!/bin/sh

<<COMMENT1
	This script can run from its saved location as ./scriptname.sh foldername
	it will create a folder structure based off of foldername in the Users Home
	directory, adjust to suit your needs
	
	also remember to chmod u+x
COMMENT1

mkdir -p ~/$1/copy
mkdir -p ~/$1/layers
mkdir -p ~/$1/stock

Initial URL


Initial Description


Initial Title
Create Directory Structure (Job Folder)

Initial Tags


Initial Language
Bash