deb11-ax files, tree

This commit is contained in:
2022-01-09 22:59:19 +00:00
parent f2657c32c6
commit bd19129087
11 changed files with 375 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
if ls --color &> /dev/null; then
alias ll='ls -kahlF --color=always'
alias l='ls -CF --color=always'
else
alias ll='ls -kahlFG'
alias l='ls -CFG'
fi
alias cd..='cd ..'
alias mkdir='mkdir -pv'
if git --version &> /dev/null; then
alias git-root='cd "$(git rev-parse --show-toplevel)"'
fi
if hugo version &> /dev/null; then
alias hubu='hugo -v --cleanDestinationDir --gc --minify'
fi