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