about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index fabfa43..e312d50 100644
--- a/main.go
+++ b/main.go
@@ -145,7 +145,7 @@ func main() {
 		if strings.HasPrefix(e.Last(), "!users") {
 			// execs: who -q | awk 'NR==1'
 			// then saves the output to bytestream
-			who := exec.Command("/usr/local/bin/showwhoison", "")
+			who := exec.Command("/usr/local/bin/who2.sh", "")
 			var bytestream bytes.Buffer
 			who.Stdout = &bytestream
 			err := who.Run()