how to create a directory in linux
Linux290
description
Create a folder named test in Linux, and print each file creation record
command
mkdir -v test
parameter
mkdir : Create the DIRECTORY(ies), if they do not already exist. -v, --verbose : print a message for each created directory
result
mkdir: created directory 'test'