-
Notifications
You must be signed in to change notification settings - Fork 166
zshrc
Song Zheng edited this page Dec 11, 2022
·
3 revisions
Bash scripts
# https://ostechnix.com/bash-tips-how-to-cd-and-ls-in-one-command/
# ld path will run cd and ls
ld() {
local dir="$1"
local dir="${dir:=$HOME}"
if [[ -d "$dir" ]]; then
cd "$dir" >/dev/null; ls --color=auto
else
echo "bash: cdls: $dir: Directory not found"
fi
}
-
System Setup - Includes
git
,bash
etc. - VIM Config
- Computer Setup - List of applications that are useful to install