09 Jul How To Find your Server’s Public IP Address by kayals in Linux, System AdministrationComments ip addr show eth0 | grep inet | awk '{ print $2; }' | sed 's/\/.*$//'... Read More
21 May Using cut on file full of ls -l output to display only filenames by kayals in Linux, System AdministrationComments ls -la | awk '{print $9}'... Read More