I wanted a directory structure of
/u5/db/prod
/u5/db/test
So I was wondering how you create multiple directories on one level without doing it across multiple commands.
To do it in one line:
mkdir -p /u5/db/{prod,test}
I wanted a directory structure of
/u5/db/prod
/u5/db/test
So I was wondering how you create multiple directories on one level without doing it across multiple commands.
To do it in one line:
mkdir -p /u5/db/{prod,test}
0 Comments