Day -> 3 of 90DaysOfDevOps
View the content of a file and display line numbers.
cat -n filename
Change the access permissions of files to make them readable, writable, and executable by the owner only.
chmod 700 filename
chmod 700 file1 file2 file3 - for multiple files
Ch...
ankittkx.hashnode.dev2 min read