From 9b8d1e01b6272bb0c0085424c1d0313f206edba2 Mon Sep 17 00:00:00 2001 From: Fredric Silberberg Date: Wed, 24 Sep 2014 23:39:07 -0400 Subject: [PATCH] Updated cat to use the new path searching algorithm --- cat/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cat/main.go b/cat/main.go index 5cb2ff0..cfcd629 100644 --- a/cat/main.go +++ b/cat/main.go @@ -48,7 +48,7 @@ func main() { flag.Parse() if !*jsonModePtr { - fmt.Printf("%s", jsh.FallbackWithArgs("/usr/bin/cat", flag.Args())) + fmt.Printf("%s", jsh.FallbackWithArgs("cat", flag.Args())) } else { runJsonMode() }