Tips & Tricks, Questions regarding shell scripts, awk, perl, sed and much more.

Advertisement


DNS query tools & Network tools (Ping & Traceroute)

Unix shell - using TR to replace new lines with spaces

Postby debuser » Thu Feb 25, 2010 3:08 pm

Unix shell - using TR to replace new lines with spaces

There are a few ways of replacing new lines with other characters. Below I'll show a few examples for replacing new lines in strings or standard input/output.

Replace new lines with spaces:
Code: Select all
# cat test.file
     In the first synopsis form, the characters in string1 are translated into
     the characters in string2 where the first character in string1 is trans-
     lated into the first character in string2 and so on.  If string1 is
     longer than string2, the last character found in string2 is duplicated
     until string1 is exhausted.

     In the second synopsis form, the characters in string1 are deleted from
     the input.

     In the third synopsis form, the characters in string1 are compressed as
     described for the -s option.

     In the fourth synopsis form, the characters in string1 are deleted from
     the input, and the characters in string2 are compressed as described for
     the -s option.

     The following conventions can be used in string1 and string2 to specify
     sets of characters:

     character  Any character not described by one of the following conven-
                tions represents itself.
Code: Select all

# tr '\n' ' \n' < test.file
     In the first synopsis form, the characters in string1 are translated into      the characters in string2 where the first character in string1 is trans-      lated into the first character in string2 and so on.  If string1 is      longer than string2, the last character found in string2 is duplicated      until string1 is exhausted.       In the second synopsis form, the characters in string1 are deleted from      the input.       In the third synopsis form, the characters in string1 are compressed as      described for the -s option.       In the fourth synopsis form, the characters in string1 are deleted from      the input, and the characters in string2 are compressed as described for      the -s option.       The following conventions can be used in string1 and string2 to specify      sets of characters:       character  Any character not described by one of the following conven-                 tions represents itself.


Below I will replace new lines with a comma (,):
Code: Select all
# tr '\n' ',\n' < test.file
     In the first synopsis form, the characters in string1 are translated into,     the characters in string2 where the first character in string1 is trans-,     lated into the first character in string2 and so on.  If string1 is,     longer than string2, the last character found in string2 is duplicated,     until string1 is exhausted.,,     In the second synopsis form, the characters in string1 are deleted from,     the input.,,     In the third synopsis form, the characters in string1 are compressed as,     described for the -s option.,,     In the fourth synopsis form, the characters in string1 are deleted from,     the input, and the characters in string2 are compressed as described for,     the -s option.,,     The following conventions can be used in string1 and string2 to specify,     sets of characters:,,     character  Any character not described by one of the following conven-,                tions represents itself.,,
debuser
 
Posts: 70
Joined: Thu Aug 06, 2009 9:48 am


Advertisement


Return to Shell Scripting and Programming

Similar topics


Who is online

Users browsing this forum: No registered users and 0 guests

cron