about summary refs log tree commit diff stats
path: root/config/ksh/functions/l.
blob: 8beac4ed27f9016c22d7025c2be869188c840260 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/ksh
l.() {
	if [[ -n "$1" ]]; then
		exa -Fbd "$1"/.*
	else
		exa -Fbd .*
	fi
}