bug-sed
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#41617: Bug.


From: Assaf Gordon
Subject: bug#41617: Bug.
Date: Sat, 30 May 2020 13:37:43 -0600
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.8.0

tag 41617 moreinfo
stop

Hello,

On 2020-05-30 9:37 a.m., Anurag Kumar wrote:
I am getting an issue when using  [sed -i.bak "s/localhost/$ip/"
  filepath] it is not able to replace the ip value in the concerned file.

To help diagnose this issue, we'll need a bit more information, e.g.:
What is the content of the file before sed ?
what is the content of the file after sed ?
what is the content of the file you expected to see?
are there any errors printed to the screen?
what version of sed are you using?

For example, the following sequence works for me:

  $ echo "hello localhost server" > tmp
  $ ip=1.2.3.4
  $ sed -i.bak "s/localhost/$ip/" tmp
  $ head tmp tmp.bak
  ==> tmp <==
  hello 1.2.3.4 server

  ==> tmp.bak <==
  hello localhost server

regards,
 - assaf






reply via email to

[Prev in Thread] Current Thread [Next in Thread]