New backup 2025-02-12 18:45:02
This commit is contained in:
parent
d98c590766
commit
a65482452b
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue