bash add string at the end of each line 3. März 20113. März 2011 prego Computer, linux, zeugs $ cat foo.txt This Is a Test $ sed -i 's/.*/&bar/' foo.txt $ cat foo.txt Thisbar Isbar abar Testbar$ cat foo.txt This Is a Test $ sed -i 's/.*/&bar/' foo.txt $ cat foo.txt Thisbar Isbar abar Testbar prego /me... prego!
nur zur info, das ganze funktioniert auch als perl onliner
perl -p -e ’s/.*/$&bar/‘ foo.txt
danke :-)