fix bashrc
This commit is contained in:
parent
f7181e8a4d
commit
067e69a2fc
1 changed files with 2 additions and 5 deletions
7
.bashrc
7
.bashrc
|
@ -27,17 +27,14 @@ export DATEFMT='+%a %Y-%m-%d %X'
|
||||||
export EDITOR=$(which vim)
|
export EDITOR=$(which vim)
|
||||||
export VISUAL=$(which vim)
|
export VISUAL=$(which vim)
|
||||||
|
|
||||||
function random() {
|
random () {
|
||||||
if [ $# -ne 1 ] || ! [[ $1 =~ ^[0-9]+$ ]] || [ $1 -lt 1 ]; then
|
if [ $# -ne 1 ] || ! [[ $1 =~ ^[0-9]+$ ]] || [ $1 -lt 1 ]; then
|
||||||
echo "Error: Please provide one positive integer argument" >&2
|
echo "Error: Please provide one positive integer argument" >&2
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
echo $(( (RANDOM % $1) + 1 ))
|
echo $(( (RANDOM % $1) + 1 ))
|
||||||
}
|
}
|
||||||
function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }
|
newpass () {
|
||||||
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() {
|
|
||||||
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-40}
|
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-40}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue