about summary refs log tree commit diff stats
path: root/config/ksh/functions/l.
diff options
context:
space:
mode:
Diffstat (limited to 'config/ksh/functions/l.')
-rw-r--r--config/ksh/functions/l.8
1 files changed, 8 insertions, 0 deletions
diff --git a/config/ksh/functions/l. b/config/ksh/functions/l.
new file mode 100644
index 0000000..8beac4e
--- /dev/null
+++ b/config/ksh/functions/l.
@@ -0,0 +1,8 @@
+#!/bin/ksh
+l.() {
+	if [[ -n "$1" ]]; then
+		exa -Fbd "$1"/.*
+	else
+		exa -Fbd .*
+	fi
+}