diff options
Diffstat (limited to 'cmd.go')
| -rw-r--r-- | cmd.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -124,6 +124,12 @@ func PathRunLog(path string, argv []string, logf *log.LogFlag) cmd.Status { // uses the 'log' package to disable echo to STDOUT // only echos if you enable the shell.INFO log flag +func RunQuiet(args []string) cmd.Status { + return PathRunLog("", args, INFO) +} + +// uses the 'log' package to disable echo to STDOUT +// only echos if you enable the shell.INFO log flag func PathRunQuiet(pwd string, args []string) cmd.Status { return PathRunLog(pwd, args, INFO) } |
