summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xcommands/cat10
1 files changed, 10 insertions, 0 deletions
diff --git a/commands/cat b/commands/cat
new file mode 100755
index 0000000..a664bbb
--- /dev/null
+++ b/commands/cat
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+set -- $1
+
+printf "𓃠 "
+for word in "$@"; do
+	printf "$word"
+	printf " 𓃠 "
+done
+printf "\n"