#linux
Read more stories on Hashnode
Articles with this tag
Managing the user accounts on a Linux system is a crucial task for system administrators. It involves creating, deleting, resetting passwords and...
LINUX CHEAT SHEET Navigation: ls: List files and directories in a directory ls -l: Displays detailed information about files and directories (long...
👉Create a simple file and do ls -ltr to see the details of the files ls -ltr Here, ls --> list of all files and directories present in the present...
Advanced Linux Shell Scripting for DevOps Engineers can cover a wide range of topics, but one area that may be particularly relevant to DevOps is user...
Shell scripting is a text file with a list of commands that instruct an operating system that is run by UNIX shell which is a command line...
Command to view what's written inside a file? The "cat" command shows the content written inside the file. cat <filename> Example: Suppose, we have...