aliases
This commit is contained in:
parent
67b66fdeed
commit
f7a90b0364
|
@ -13,7 +13,9 @@ alias :q="exit"
|
||||||
alias rget="rsync -rP --append-verify --inplace"
|
alias rget="rsync -rP --append-verify --inplace"
|
||||||
alias 7zu="7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on"
|
alias 7zu="7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on"
|
||||||
|
|
||||||
alias cronmail="mutt -f $MAIL"
|
alias cronmail="mutt -f $MAIL -F <(grep -v 'set folder' ~/.config/mutt/neomuttrc | grep -v 'mailboxes'; echo 'mailboxes $MAIL\nset folder=$MAIL')"
|
||||||
|
|
||||||
|
alias d="dragon-drop -a -x -T"
|
||||||
|
|
||||||
if ! command -v fd >/dev/null; then
|
if ! command -v fd >/dev/null; then
|
||||||
if command -v fdfind >/dev/null; then
|
if command -v fdfind >/dev/null; then
|
||||||
|
@ -113,7 +115,7 @@ cd(){
|
||||||
|
|
||||||
# count files in current or given directory
|
# count files in current or given directory
|
||||||
count() {
|
count() {
|
||||||
find $1 \( ! -path '*/.*' \) | wc -l
|
find $1 -mindepth 1 \( ! -path '*/.*' \) | wc -l
|
||||||
}
|
}
|
||||||
|
|
||||||
pumount() {
|
pumount() {
|
||||||
|
|
Loading…
Reference in a new issue