mlij wrote: > What is Cnp? > How can I use it? >
Sorry for that. CnP is 'Copy and Paste'. > If I run only grep -lr linux/config.h, there are a list of files. > So I think that this command is ok. > > I have already put " and put nothing. > Nothing works!!! > > How you wrote, I believe the problem is on the sed command. > Why sed do not read grep command? > Ken's analysis is correct. The error message shows that the grep command was a single argument rather than a command to expand. That most likely means that you are using "'" (single quote) instead of "`" (backtick). I've made that mistake myself many times. :-) BTW, for the other devs reading this...might it be better in this particular case to use $(command) syntax? -- DJ Lucas -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
