fix bashrc

This commit is contained in:
Christoph J. Scherr 2025-03-01 15:19:07 +01:00
parent f7181e8a4d
commit 067e69a2fc
Signed by: PlexSheep
GPG key ID: 9EB784BB202BB7BB

View file

@ -27,17 +27,14 @@ export DATEFMT='+%a %Y-%m-%d %X'
export EDITOR=$(which vim)
export VISUAL=$(which vim)
function random() {
random () {
if [ $# -ne 1 ] || ! [[ $1 =~ ^[0-9]+$ ]] || [ $1 -lt 1 ]; then
echo "Error: Please provide one positive integer argument" >&2
return 1
fi
echo $(( (RANDOM % $1) + 1 ))
}
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 smallfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
function newpass() {
newpass () {
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-40}
}