cli-sedHow can I use a variable with the sed command line tool?
The sed command line tool can be used to perform text manipulation on a file or stream. To use a variable with the sed command line tool, you can use the -e (--expression) option. The -e option allows you to pass an expression to sed, which can include a variable. For example:
my_var="hello"
sed -e "s/world/$my_var/" test.txt
The example above replaces the word "world" with the contents of the variable my_var
in the file test.txt
.
The parts of the code are as follows:
my_var="hello"
- this sets the variablemy_var
to the valuehello
sed -e "s/world/$my_var/" test.txt
- this runs the sed command, using the expressions/world/$my_var/
on the filetest.txt
Helpful links
More of Cli Sed
- How can I use sed in a command line interface?
- How do I use the command line to edit text using sed?
- How can I use the command line to print the output of a sed command?
- How can I use SED in a Windows command line interface?
- How can I use sed command line options to modify text files?
- How can I use sed in the command line on a Mac?
- How can I use the 'sed' command line utility to add quotes around a string?
- How can I use the command line to compress and edit files with sed and zip?
- How do I use the command line to compress a file using SED and ZIP?
See more codes...