-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support the configuration of a shell environment before tracing a passed command #279
Comments
could you share more detailed examples? |
I would like to specify special files for the standard data streams of my test programs so that the output will be separated from data by your analysis tool for further software test runs. |
Do you want to redirect stdout of specific program to specific file such a below example?
|
Yes (in principle) Data redirections can be extended on demand, can't they? |
Yes, there was no option about it.
They will affect standard I/O of all child tasks. |
Thanks for another constructive feedback.
I imagined an other solution approach. |
How do you specify other data streams except for stdin, stdout, stderr? |
Do you find the article “Linux Fundamentals – I/O, Standard Streams, and Redirection.” by Steven Vona helpful in this area?
Would you like to take another look in a manual from a popular shell? |
I got it. How about making a new shell script for them? |
Can a “shell” be chosen to resolve all configured redirections (similar to the way as it would usually happen in interactive mode)?
The evaluation of additional shell scripts might influence tracing approaches in undesirable ways, doesn't it? |
The tool “guider” supports tracing (or profiling) for passed commands.
These commands are directly executed so far.
But this execution configuration should be adjusted for some use cases.
We are used to functionality which is provided by some command-line interpreters.
We would occasionally like to redirect data streams before a specified command will be executed.
How should the corresponding shell be constructed (without extra tracing) so that the desired data processing will be continued as expected? 🤔
The text was updated successfully, but these errors were encountered: