Did You Know? that you can instruct your linux system to shutdown with shutdown command? For example # shutdown -h now - will immediately shutdown your system and # shutdown -h +60 - will set timer to shutdown your system in 1 hour
-m, --mode=MODE set permission mode (as in chmod), not rwxrwxrwx - umask -p, --parents no error if existing, make parent directories as needed
Media
4. Examples
Creating directory in the Linux environment is very simple task. Let's create directory named "dir1":
mkdir dir1
mkdir command can take more arguments. For example we can take two directories with only one command:
mkdir dir2 dir3
mkdir command can also create entire directory tree. By using -p option mkdir will also create parent directories if required:
mkdir -p dir4/dir4.1
By default mkdir creates directory with permissions set by umask. To force mkdir to create directory with different permissions the -m option can be used. For example to create directory with [[chmod | permissions]] 744 we can issue following command: