Mkdir
You can make all the folders in a file path using the -p
flag. Usually if you type some/path
as the argument to mkdir
it will try to create the folder path
inside the pre-existing folder some
, however using -p
it will instead create the folder some
and then the folder path
inside it.
$ mkdir -p some/path