Tagged Questions

2
votes
4answers
319 views

creating tidy shell script from ugly command line pipeline

I wrote a piped shell command that has multiple pipes in it that works great. I now want to put this in the form of a (tidy) shell script. Here is the script: #!/bin/bash for number in `cat ...
2
votes
3answers
1k views

bash: Using sed in backticks

I want to escape some special chars inside a string automatically. I thought of echoing that string and pipe it through some seds. This doesn't seem to work inside of backticks. So why does echo ...