ubuntu - Linux Command to Make Directory Tree in 1 command? -


hi there command make directorys in 1 command http://imgur.com/qarsaib

would know struture

thanks

from manpage (try man mkdir):

synopsis        mkdir [option]... directory...  description        create directory(ies), if not exist.         -p, --parents               no error if existing, make parent directories needed 

so can use:

mkdir -p folder1/subfolder1 folder1/subfolder2 folder2/aap folder3/noot folder3/mies/piet 

and find return:

. ./folder2 ./folder2/aap ./folder1 ./folder1/subfolder2 ./folder1/subfolder1 ./folder3 ./folder3/noot ./folder3/mies ./folder3/mies/piet 

Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -