Linux command to check space
Linux command to check space df -h command is used to check space in linux
Linux command to check space df -h command is used to check space in linux
Find All Sudo Users In CentOS linux As a linux administrator, sometimes you need to how many super users and normal users are there in a system. So you need to find all sudo users in a centos (linux) system. However, there are chances that sometimes we need to give a temporary sudo access to a … Read more
Find Files and Directories Based on Size in Linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. To find all 50MB files, use. # find / … Read more
Find Files and Directories Based on Modification Time in Linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. Find Last 50 Days Modified Files … Read more
In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. Find is a command for recursively filtering objects in the file system based on a simple … Read more
The mkdir command in the Unix, DOS, OS/2, and Microsoft Windows operating systems and in the PHP scripting language is used to make a new directory.
cd : Change Directory The cd command, which stands for “change directory”, changes the shell’s current working directory. It is a builtin command, which means that it is executed directly by your shell, instead of launching an external program. cd is a command-line OS shell commandused to change the current working directory in operating systems such as … Read more
pwd prints the full pathname of the current working directory. In Unix based system like linux and some other operating systems, the pwd command writes the full pathname of the current working directory to the standard output. pwd = print working directory.