Search Results

10
votes

How do I use sudo to redirect output to a location I don’t have permission to write to?

Your command does not work because the redirection is performed by your shell which does not have the permission to write to /root/test.out. The redirection of the output is not …
26
votes

What GNU/Linux command-line tool would I use for performing a search and replace on a file?

$ sed 's/a.*b/xyz/g;' old_file > new_file GNU sed (which you probably have) is even more versatile: $ sed -r --in-place 's/a(.*)b/x\1y/g;' your_file …