Delete white space from text file

Linux command:

cat filename | tr -d [:space:]

This removes the whitespace and displays the results as standard out, you can then add a little bit to the command to save it to a file, like so:

cat filename | tr -d [:space:] >> fileoutname.txt

This entry was posted in Computers and tagged , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>