Why does this sed command do nothing inside a bash script but work outside? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T17:41:06Z http://stackoverflow.com/feeds/question/885798 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/885798/why-does-this-sed-command-do-nothing-inside-a-bash-script-but-work-outside 0 Why does this sed command do nothing inside a bash script but work outside? Stuart Woodward 2009-05-20T01:38:31Z 2009-05-20T08:04:40Z <pre><code> # join pairs of lines side-by-side (like "paste") sed '$!N;s/\n/ /' </code></pre> <p>The above script comes from the great list of sed one-liners found on sourceforge.</p> <p>I wish to use it in an a bash script but it has no effect if used inside the script. If I pipe the output of the script through it, it joins join pairs of lines side-by-side as described.</p> <p>Some character must need escaping but I just can't "see" which character needs to be escaped to make it work inside a bash script.</p> <p>Yoroshiku Onegaishimasu!</p> <p>Later..</p> <pre><code>#!/bin/bash # numbers.sh for X in 1 2 3 4 5 6 7 8 9 0 do echo $X done </code></pre> <p>When used this script:</p> <pre><code>#!/bin/bash ./numbers.sh | sed '$!N;s/\n/ /' </code></pre> <p>works fine..</p> <pre><code>1 2 3 4 5 6 7 8 9 0 </code></pre> <p>Please let me regroup my thoughts on this..</p> <p>Later...</p> <p>I found the logical error in the script which broke it.</p> http://stackoverflow.com/questions/885798/why-does-this-sed-command-do-nothing-inside-a-bash-script-but-work-outside/885820#885820 1 Answer by brlcad for Why does this sed command do nothing inside a bash script but work outside? brlcad 2009-05-20T01:50:07Z 2009-05-20T01:50:07Z <p>It's not obvious to me what the problem is without seeing your script. A quick test here and it worked just fine inside of a simple script:</p> <pre><code>#!/bin/bash cat /etc/crontab | sed '$!N;s/\n/ /' </code></pre> <p>If you're trying to embed the command inside a string or variable, the \n will be an escape candidate.</p> <p>For what it's worth, there's rarely a 'strong' case for making bash-specific scripts over straight up /bin/sh posix-compliant shell scripts unless you really need the advanced containers (which is rare). You'll end up with a script that is considerably more portable to dozens of other posix/korn/bourne-compatible shells (including bash).</p> <p>Cheers! Sean</p> http://stackoverflow.com/questions/885798/why-does-this-sed-command-do-nothing-inside-a-bash-script-but-work-outside/885825#885825 1 Answer by Jonathan Leffler for Why does this sed command do nothing inside a bash script but work outside? Jonathan Leffler 2009-05-20T01:53:27Z 2009-05-20T01:53:27Z <p>Are you missing the <code>"$@"</code> to indicate the file name arguments - so it was only reading from standard input?</p> <p>What was the misbehaviour? Was the file simply copied to standard output?</p> <p>Works for me - under Cygwin. '<code>al</code>' is a program that lists its arguments one per line.</p> <pre><code>$ al a b c d e f | sed '$!N;s/\n/ /' a b c d e f $ cat xxx sed '$!N;s/\n/ /' $ al a b c d e f g | bash xxx a b c d e f g $ </code></pre>