ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Is there a way to pass variables to sed? I would like to present a user with a list with line numbers, then prompt the user for the line number that they would like to delete. I thought that I would like to use sed to delete that line, here is what I had in mind:
cat list | more
echo "Enter line number to be deleted..."
read myNum
sed -e $myNumd
I know that I can do this to delete line 5
sed -e 5d
but I am having trouble passing variables. Any ideas? Or other solutions?
You get -1 point for gratuitous cat'ing to sed Also, I'm not so sure those quotes will work for everything in general, but if it works for you great. If not, above is what I did.
If you want it to put the results in the same file, of course you'll have to use cat. But for things like piping the output of cat to more, it's just unnecessary. I was just pointing out that sed can work on files directly if you want it to.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.