Tag: linux command

Share some linux prank commands

linux prank commands: - linux sl command - linux cowsay/cowthink commands, - linux cmatrix command - linux figlet / toilet commands - linux yes command - linux oneke command...

How to using multiple delimiters in awk and sed

Multiple delimiter-separated fields in awk or sed. Using awk command: ➜ awk -F'[:=|]' '{print $1, $2, $3}' test.log; Using sed command: ➜ sed 's/[:=|]/ /g' test.log...