-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed the logger to run all commands in a single shell.
Previously, a new shell was spawned for every command run in the logger. Now it is the case that the logger will run all commands in one shell. So running something like logger.log("Switch groups", "newgrp my-group") followed by logger.log("Print group", "id -gn") would have the same effect as running "newgrp my-group" and "id -gn" in your terminal: the output should be "my-group".
- Loading branch information
Showing
4 changed files
with
186 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.