Linux: Find and Delete Files with Modification Time Older Than 30 Days April 9, 2021cocyer In this tutorial, we will introduce how to delete files with modification time is older than 30 days in linux. The delete command [...]
Linux cat Command: Display File Content to Screen March 29, 2021cocyer In this tutorial, we will introduce how to use linux cat command to display file content. For example: cat .profile We will see [...]
Linux mkdir Command: Create a New Directory March 28, 2021cocyer In this tutorial, we will introduce how to use linux mkdir command to create a new directory. Here is an example code: mkdir [...]
Linux rm -ir Command: Delete File or Directory Recursively March 28, 2021cocyer In this tutorial, we will introduce how to delete file or directory in linux. We can use rm -ir command. You should notice: [...]
Linux mv -i Command: Move the Source File to Target File March 28, 2021cocyer In this tutorial, we will introduce how to use mv -i command to move files in linux. mv –i sourceFile targetFile Here is [...]
Linux cp –ir Command: Copy the Source Directory to Target Directory March 28, 2021March 28, 2021cocyer In this tutorial, we will introduce how to use cp -ir command to copy the source directory to target directory in linux. We [...]
Linux cd Command: Change Directory to Another One March 28, 2021cocyer Linux cd command can change directory from the current directory to another one. In this tutorial, we will show you how to use it. [...]
Linux ls -la Command: Display All Hidden and Non-hidden Files March 28, 2021cocyer In this tutorial, we will use linux ls -la command to list all hidden and non-hidden files in linux system. ls -la Run [...]