Tagged Questions
1
vote
4answers
182 views
print last field from line + alternative for awk
Due to technical reason on my Solaris machine, I can't use awk in order to print the last field in line.
What are the other alternatives to awk that print the last field from line (using cut or tr ...
1
vote
1answer
133 views
tr command not working with octal sequences
I need to strip non-ASCII characters off a file. I was using the command -
/usr/xpg4/bin/tr -cd '\0-\177' <non-ASCII_file.dat >ASCII_file.dat
Though it worked in the past, it is not ...