From 067e69a2fc88e166e582937689fa9ca7c55c8669 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Sat, 1 Mar 2025 15:19:07 +0100 Subject: [PATCH] fix bashrc --- .bashrc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.bashrc b/.bashrc index add24d7..98c64da 100644 --- a/.bashrc +++ b/.bashrc @@ -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} }