Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
0 votes
1 answer
908 views

Piping multiple commands to bash, pipe behavior question

I have this command sequence that I'm having trouble understanding: [me@mine ~]$ (echo 'test'; cat) | bash echo $? 1 echo 'this is the new shell' this is the new shell exit [me@mine ~]$ As far as ...
user avatar
1 vote
2 answers
1k views

Pipe Operator in Linux

As per my understanding, the pipe operator in Linux takes standard output of the one command and channelizes it to the standard input of the next command. But I have faced one anomaly. I am trying to ...
user2740885's user avatar
0 votes
1 answer
2k views

Command line tool to get binary data as String in Windows like Cat?

So I have program that transforms data by piping the string into stdin like so. cat input.mp3 | myexe except I want this commandline tool to run on Windows. type input.mp3 | myexe.exe and cat and ...
Skylion's user avatar
  • 2,752