Skip to content

Commit

Permalink
pass cli arg to RecursiveTouch()
Browse files Browse the repository at this point in the history
  • Loading branch information
defeated committed Dec 30, 2013
1 parent cfdf007 commit dcd1fd0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package main

import (
"os"
)

func main() {
name := os.Args[1]
if name != "" {
RecursiveTouch(name)
}
}

0 comments on commit dcd1fd0

Please sign in to comment.