This commit is contained in:
TheK4n 2021-09-24 21:03:32 +03:00
parent 74847aad5f
commit f23a443f34

View File

@ -42,6 +42,12 @@ workon() {
cl() {
local DIR
DIR="$*"
if [ $# -lt 1 ]; then
DIR=$HOME
fi
cd "${DIR}" && ls -F --color=auto
}