I'm trying to create a directory in a shell script:
mkdir -p DirName
but I always get the same error: cannot create directory `/DirName': Permission denied
If I run the same command directly from the shell instead of using the scripts, that works perfectly.
any idea?
Thank you! :)
mkdir -p /DirNamewhich is different frommkdir -p DirName. The former tries to create a directory in the filesytem root (which you're likely not to have write permission to unless running as root). The latter creates a director in the current working dir. – Shawn Chin Nov 19 '12 at 15:41