Skip to content

Instantly share code, notes, and snippets.

@stanwu
Created October 25, 2011 12:05
Show Gist options
  • Save stanwu/1312488 to your computer and use it in GitHub Desktop.
Save stanwu/1312488 to your computer and use it in GitHub Desktop.
auto_mkdir
#!/bin/bash
# by stanwu http://stanwu.org
for i in `cat stan/passwd | grep -v \# | awk -F: '{print $1}'`
do
echo $i
mkdir -p $i
chown $i $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment