10 lines
126 B
Plaintext
10 lines
126 B
Plaintext
|
#!/bin/zsh
|
||
|
|
||
|
target=$1
|
||
|
|
||
|
if [ -z $target ]; then
|
||
|
target='./'
|
||
|
fi
|
||
|
|
||
|
lsd --tree --depth 1 -a -h --group-directories-first $target
|