Posts

Showing posts with the label linux

linux split line by specific character

Splits the line in the file by comma and shows columns 3 to 10 grep file.txt | cut -d ',' -f 3-10

linux ps command with full path

ps -auxww

unix/linux tar/untar quick guide

UNIX TAR/UNTAR Creating archive: tar -cf archive.tar myDirectories/ Listing the contents of an archive: tar -tf archive.tar Extracting all files from an archive: tar -xf archive.tar

Send email from unix/linux

cat | mail