How to create a directory and give permission in single command in Linux?
I have to create lots of folder with full permission 777.
777
install -d -m 0777 /your/dir
should give you what you want. Be aware that every user has the right to write add and delete files in that directory.