New backup 2025-02-12 18:45:02

This commit is contained in:
Penelope Gwen 2025-02-12 18:45:02 -08:00
parent d98c590766
commit a65482452b

View file

@ -44,6 +44,14 @@ devpod(){
simplewebserver(){
screen python3 -m http.server
}
filecount(){
[[ -z ${1} ]] && fc_targetdir=$(pwd) || fc_targetdir="${1}"
find "${fc_targetdir}" -type f | wc -l
}
filecount-monitor(){
[[ -z ${1} ]] && fc_targetdir=$(pwd) || fc_targetdir="${1}"
watch "find ${fc_targetdir} -type f | wc -l"
}
#alias devbox-stable="TERM=xterm-256color toolbox enter debian-toolbox-12"
#alias devbox-testing="TERM=xterm-256color toolbox enter debian-toolbox-testing"
#git shortcut to quickly push all changes with comment