stdin does not allow further switches
See original GitHub issue./mme -extract -model=DEVAL_12 > temp2.kts; ./mm temp2.kts -graph
works
./mme -extract -model=DEVAL_12 | ./mm - -graph
does not work.
where mm
is the DSL.
note running ./mme -extract -model=DEVAL_12 | ./mm -
does half work, but not very useful as I need the switch.
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
Pseudo-terminal will not be allocated because stdin is not a ...
Sending commands via stdin means that ssh 's stdin is no longer connected to a terminal, so no pty is created, and ssh...
Read more >os: Stdin does not support SetReadDeadline · Issue #26579
If we set standard input into non-blocking mode, then if we are careless or simply unlucky the program will exit with standard input...
Read more >Why do STDIN inputs not work on my TCL console in ... - Intel
Due to a known issue with the Quartus® II software versions 11.0 SP1 and earlier, the PC version of the tools does not...
Read more >Is there any way to de-couple stdin into multiple input sources?
bash - Is there any way to de-couple stdin into multiple input sources? - Unix & Linux Stack Exchange. Stack Overflow for Teams...
Read more >linux - Can I send some text to the STDIN of an active process ...
First create a named pipe to route STDIN through: mkfifo /data/in . · Then block it for writing, so it does not get...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It looks like kscript treats “-” as one of kscript options, not as the script. Below code in Kscript.kt seems to be the culprit.
Changing it to something like below would fix the issue.
I will give that a try this week and see if it works. And if it does put together a pull request