|
|
@@ -6,6 +6,9 @@ alias la='ls -lAFh' # long list,show almost all,show type,human readable
|
|
|
alias lr='ls -tRFh' # sorted by date,recursive,show type,human readable
|
|
|
alias lt='ls -ltFh' # long list,sorted by date,show type,human readable
|
|
|
alias ll='ls -l' # long list
|
|
|
+alias lth='lt | head -16' # latest 15
|
|
|
+
|
|
|
+alias dfh='df -h' # df
|
|
|
|
|
|
# export local .env file
|
|
|
alias export-env="export \$(grep -v '^#' .env | xargs -0)"
|
|
|
@@ -27,6 +30,9 @@ if [[ "$(uname -s)" = 'Darwin' ]]; then
|
|
|
alias chrome-tabs="$HOME/dotfiles/bin/chrome-tabs"
|
|
|
fi
|
|
|
|
|
|
+# node
|
|
|
+alias scripts="jq .scripts package.json"
|
|
|
+
|
|
|
# other bin
|
|
|
alias awsp="$HOME/dotfiles/bin/aws-profile"
|
|
|
|