aboutsummaryrefslogtreecommitdiff
path: root/.config/nushell/scripts
diff options
context:
space:
mode:
Diffstat (limited to '.config/nushell/scripts')
-rwxr-xr-x.config/nushell/scripts/greet.nu4
1 files changed, 4 insertions, 0 deletions
diff --git a/.config/nushell/scripts/greet.nu b/.config/nushell/scripts/greet.nu
new file mode 100755
index 0000000..9399fdd
--- /dev/null
+++ b/.config/nushell/scripts/greet.nu
@@ -0,0 +1,4 @@
+#! /bin/nu
+def greet [name] {
+ ['hello' $name]
+}