This commit is contained in:
Christoph J. Scherr 2023-06-11 00:55:35 +02:00
parent a68a29fd76
commit 6fc91e4e9a
Signed by: PlexSheep
GPG Key ID: 25B4ACF7D88186CC
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ alias gls=/bin/ls
### Functions
function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(M|G|T|P|E)\s" }
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
function smallfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
### ZSH HOME
export ZSH=$HOME/.zsh-server

View File

@ -32,7 +32,7 @@ alias gls=/bin/ls
### Functions
function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(M|G|T|P|E)\s" }
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
function smallfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
### ZSH HOME
export ZSH=$HOME/.zsh