On 8/9/19 5:08 AM, John Burrell via blfs-dev wrote:
This doesn't work as written:

sed -i '1506 s/</>/' \
        '1507 s/</>/' \
        '1508 s/</>/' src/shared/seccomp-util.c

it should be:

sed -e '1506 s/</>/' \
       -e  '1507 s/</>/' \
       -e '1508 s/</>/' \
       -i  src/shared/seccomp-util.c

jb.


Good morning,

I found a more efficient way to combine the lines into one, and tested it

It's been committed at r21921


Doug

--
http://lists.linuxfromscratch.org/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to