GNU Screen: programmer-quotes ` ` in Readbuf?
The commands need absolute paths in slurping. So I need programmer-quotes, because of laziness to write long paths. How can I use them like: ^a :readbuf `pwd`/file ...
The commands need absolute paths in slurping. So I need programmer-quotes, because of laziness to write long paths. How can I use them like: ^a :readbuf `pwd`/file ...
Either I missed some backlash or backlashing does not seem to work with too much programmer-quote-looping. $ echo "hello1-`echo hello2-\`echo hello3-\`echo hello4\`\``" hello1-hello2-hello3-echo hello4 Wanted hello1-hello2-hello3-hello4-hello5-hello6-... ...