ref(func/lsl)

This commit is contained in:
TheK4n 2022-01-04 23:01:51 +03:00
parent 32bf69ccec
commit 05f4b25d2a

View File

@ -2,10 +2,10 @@
lsl () {
local DIR
DIR="$*"
if [ $# -lt 1 ]; then
DIR="$PWD"
DIR="$1"
if [ -z "$1" ]; then
DIR="$(pwd)"
fi
ls -lhFA --color=always "${DIR}" | less -R