I want to remove all the white spaces from a given text file. Is there any shell command available for this ? Or, how to use sed for this purpose.
sed
I wa
Try this:
tr -d " \t"
See the manpage for tr(1) for more details.