Linux CLI - File and Directory Operations
What will be the result of running this command?
mkdir -p home/user/docs
mkdir -p home/user/docs
-p option tells mkdir to create parent directories as needed without error if they already exist.home/user/docs including any missing directories in the path.mkdir -p = create nested folders [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions