Open links in new tab
  1. unix - sed edit file in-place - Stack Overflow

    How do I edit a file in a single sed command? Currently, I have to manually stream the edited content into a new file and then rename the new file to the original file name. I tried sed -i, but my

  2. regular expression - Using sed to find and replace complex string ...

    Learn how to use sed with regex for complex string replacements in Unix systems.

  3. What is the purpose of -e in sed command? - Unix & Linux Stack …

    Jun 3, 2015 · In your example sed 's/foo/bar/' and sed -e 's/foo/bar/' are equivalent. In both cases s/foo/bar/ is the script that is executed by sed. The second option is more explicit, but that is probably …

  4. What is sed and what is it used for? - Ask Ubuntu

    From Sed man page: Sed is a stream editor. A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline). While in some ways similar to an …

  5. shell - "sed" command in bash - Stack Overflow

    Oct 21, 2010 · 54 sed is the Stream EDitor. It can do a whole pile of really cool things, but the most common is text replacement. The s,%,$,g part of the command line is the sed command to execute. …

  6. Find and replace with sed in directory and sub directories

    I run this command to find and replace all occurrences of 'apple' with 'orange' in all files in root of my site: find ./ -exec sed -i 's/apple/orange/g' {} \\; But it doesn't go through sub directo...

  7. unix - What does sed -i option do? - Stack Overflow

    Aug 30, 2013 · I'm debugging a shell script and trying to find out the task performed by the following command: sed -i '1,+999d' /home/org_user/data.txt I need to change this command as its failing with …

  8. Using different delimiters in sed commands and range addresses

    I am using sed in a shell script to edit filesystem path names. Suppose I want to replace /foo/bar with /baz/qux However, sed's s/// command uses the forward slash / as the delimiter. If I do tha...

  9. How to use variables in a command in sed? - Stack Overflow

    How to use variables in a command in sed? Asked 12 years, 6 months ago Modified 2 years, 9 months ago Viewed 202k times

  10. How can I use sed to replace a multi-line string?

    Aug 16, 2016 · Sed has a set of commands which allow this type of thing. Here is a link to a Command Summary for sed. It is the best one I've found, and got me rolling. However forget the "one-liner" idea …