marker icon indicating copy to clipboard operation
marker copied to clipboard

Pipes and redirection

Open joepie91 opened this issue 10 years ago • 2 comments

For composing multiple commands, it'd be useful if one could do something like the following:

curl http://some-url.com/ | grep links<ctrl+space>

... where it would then search for grep links (but not the curl command before it), and then upon completion, result in something like this:

curl http://some-url.com/ | grep -E 'https?:\/\/[^ ]+'

... so, in effect, only autocompleting the command you're currently writing - the same for > redirection.

This doesn't seem currently implemented, unless there's something I'm missing?

Great job otherwise, by the way :)

joepie91 avatar Sep 19 '15 23:09 joepie91

Thanks for the proposition. Actually, this is one of two updates I'm planning to make(along with updating the shell script, to hide that 'maker get ""' command which shows up in the terminal). I just need to better organize my time :)

pindexis avatar Sep 24 '15 22:09 pindexis

This seems to be implemented already!

QiangF avatar Dec 14 '18 06:12 QiangF