Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-06-16 13:35:32 -07:00
parent f2fa2c1d31
commit cfd1909e16
1 changed files with 8 additions and 0 deletions

View File

@ -77,6 +77,14 @@ func SetStderr(newerr *os.File) {
shellStderr = newerr
}
func Unlink(filename string) {
os.Remove(Path(filename))
}
func RM(filename string) {
os.Remove(Path(filename))
}
/*
err := process.Wait()