You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to control mvnsh by sending commands to the process from scripts. For example if I have the mvnsh process id of 18450 then I would send a command to standard in like:
printf"mvn package\n"> /proc/18450/fd/0
However this only echoes "mvn package" to the mvnsh terminal followed by a line feed. This makes sense because standard in points to the terminal for the mvnsh process.
Can mvnsh be configured to read commands from a named pipe instead? This way one could script commands to the mvnsh process and still be able to eliminate JVM boot time.
The text was updated successfully, but these errors were encountered:
I would like to control mvnsh by sending commands to the process from scripts. For example if I have the mvnsh process id of 18450 then I would send a command to standard in like:
However this only echoes "mvn package" to the mvnsh terminal followed by a line feed. This makes sense because standard in points to the terminal for the mvnsh process.
Can mvnsh be configured to read commands from a named pipe instead? This way one could script commands to the mvnsh process and still be able to eliminate JVM boot time.
The text was updated successfully, but these errors were encountered: