aboutsummaryrefslogtreecommitdiff
path: root/.config/nushell/scripts/greet.nu
diff options
context:
space:
mode:
authorAlec Goncharow <alec@goncharow.dev>2023-01-24 10:09:21 -0600
committerAlec Goncharow <alec@goncharow.dev>2023-01-24 10:09:21 -0600
commit47e76c9ba66260f1cebf74015a7c4a566a012364 (patch)
treee9693330f3d79725235a65f311586673dffd8fd5 /.config/nushell/scripts/greet.nu
parent37baec21f82da3087eb2993e360cb693633e668c (diff)
alacritty and nushell scripts dir
Diffstat (limited to '.config/nushell/scripts/greet.nu')
-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]
+}