summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/shell.go b/shell.go
index 7f34821..7d57077 100644
--- a/shell.go
+++ b/shell.go
@@ -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()