Format output of xargs

I would like to change the format of the output xargs displays

cat k.txt 
1 
2 
3

And

cat k.txt | xargs 
1 2 3

However I would like to have 1, 2, 3 or 1|2|3. Any suggestions?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

Below are a dozen or so examples of how you can take a file such as this:

$ cat k.txt
1
2
3

and convert it to this format:

1,2,3

You can use this command to create the above file if you’d like to play along:

$ cat <<EOF > k.txt
1
2
3
EOF

The examples below are split into 2 groups. Ones that “work” and ones that “almost” work. I leave these because often times it’s just as valuable to see why something doesn’t work, as it is to see why something does.

Most scripting languages that I’m familiar with are represented. Some are represented multiple times, since as with the famous acronym typically referenced in Perl, TIMTOWTDI.

NOTE: You can swap out the comma (,) in the examples below and replace it with whatever characters you want, i.e. |.

Examples that “work”

These code snippets will produce the desired output.

The paste command:

$ paste -s -d ',' k.txt 
1,2,3

The sed command:

$ sed ':a;N;$!ba;s/n/,/g' k.txt
1,2,3

$ sed ':a;{N;s/n/,/};ba' k.txt 
1,2,3

The perl command:

$ perl -00 -p -e 's/n(?!$)/,/g' k.txt
1,2,3

$ perl -00 -p -e 'chomp;tr/n/,/' k.txt
1,2,3

The awk command:

$ awk '{printf"%s%s",c,$0;c=","}' k.txt
1,2,3

$ awk '{printf "%s,",$0}' k.txt | awk '{sub(/,$/,"");print}'
1,2,3

$ awk -vORS=, 1 k.txt | awk '{sub(/,$/,"");print}'
1,2,3

$ awk 'BEGIN {RS="dn"}{gsub("n",",");print $0}' k.txt | awk '{sub(/,$/,"");print}'
1,2,3

The python command:

$ python -c "import sys; print sys.stdin.read().replace('n', ',')[0:-1]" <k.txt
1,2,3

$ python -c "import sys; print sys.stdin.read().replace('n', ',').rstrip(',')" <k.txt
1,2,3

Bash’s mapfile built-in:

$ mapfile -t a < k.txt; (IFS=','; echo "${a[*]}")
1,2,3

The ruby command:

$ ruby -00 -pe 'gsub /n/,",";chop' < k.txt
1,2,3

$ ruby -00 -pe '$_.chomp!"n";$_.tr!"n",","' k.txt
1,2,3

The php command:

$ php -r 'echo strtr(chop(file_get_contents($argv[1])),"n",",");' k.txt
1,2,3

Caveats

Most of the examples above will work just fine. Some have hidden issues, such as the PHP example above. The function chop() is actually an alias to rtrim(), so the last line’s trailing spaces will also be removed.

So too do does the first Ruby example, and the first Python example. The issue is with how they’re all making use of a type of operation that essentially “chops” off, blindly, a trailing character. This is fine in for the example that the OP provided, but care must be taken when using these types of one liners to make sure that they conform with the data they’re processing.

Example

Say our sample file, k.txt looked like this instead:

$ echo -en "1n2n3" > k.txt

It looks similar but it has one slight difference. It doesn’t have a trailing newline (n) like the original file. Now when we run the first Python example we get this:

$ python -c "import sys; print sys.stdin.read().replace('n', ',')[0:-1]" <k.txt
1,2,

Examples that “almost” work

These are the “always a bridesmaid, never a bride” examples. Most of them could probably be adapted, but when working a potential solution to a problem, when it feels “forced”, it’s probably the wrong tool for the job!

The perl command:

$ perl -p -e 's/n/,/' k.txt
1,2,3,

The tr command:

$ tr 'n' ','  < k.txt 
1,2,3,

The cat + echo commands:

$ echo $(cat k.txt)
1 2 3

The ruby command:

$ ruby -pe '$_["n"]=","' k.txt
1,2,3,

Bash’s while + read built-ins:

$ while read line; do echo -n "$line,"; done < k.txt
1,2,3,

Method 2

@slm already given nice answer, but as your question “format output of xargs”

xargs -I{} echo -n "{}|" < test.txt
  • -I is “replace strings” option.
  • {} is a placeholder for output text.
  • This is similar to the use of a curly-bracket pair in “find.”

If you want to get rid of the trailing | you can use sed to do some clean up:

$ xargs -I{} echo -n "{}|" < k.txt  | sed -e 's/|$//'
1|2|3

Method 3

This is an old thread, I know. The OP asked with a simple code like this. To keep it close to the original, I have a simple solution.

cat k.txt | xargs
1 2 3

use sed

cat k.txt | xargs | sed 's/ /,/g'
1,2,3

or

cat k.txt | xargs | sed 's/ /|/g'
1|2|3

sed can look a little weird but broken down, it makes much sense.

‘s is for substitute.
g’ is for global : without this, it will only do the first substitution on each new line. Since you use ‘xargs’ it displays them as one line. So you will get “1,2 3”.

The delimiter is used for separation. I used the / character. One interesting trick: you can replace the delimiter with most any other character, as long as we keep it the same format between the quotes. So this would work also….

cat k.txt | xargs | sed 's# #,#g'

or

cat k.txt | xargs | sed 'sT T,Tg'

Obviously, using certain chars as the delimiter can get confusing, so be smart.

Method 4

xargs <k.txt | tr   |

You don’t need cat – just pass in the file input and – if given no other command – xargs will pass out its default format – which is of a kind with /bin/echo‘s (without backslash c-escape interpretations).

xargs will strip off head/tail whitespace from the input file and squeeze other sequences of whitespace down to a single space. This means that while passing the file from tr to xargs like:

tr \n | <k.txt | xargs

…prints…

1|2|3|

…going the other way and operating only on the args that xargs space-delimits does….

1|2|3n

…because xargs prints the final trailing newline (as is required for a text file), but it doesn’t get translated that way.

Note, though, that this (or any other solution offered here) does not account for xargs quoting in input. xargs will pass out literally single/double/backslash-quoted non-newline whitespace chars in input, which can themselves be quoted like:

xargs <<IN
1    2'      3''      '4
IN

1 2      3' '4


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x