Feat: Pure Bash Bible and TLDR in cheat

This commit is contained in:
2023-05-05 23:02:31 +03:00
parent e5fe49834d
commit 8de487250d
7 changed files with 150 additions and 5 deletions

View File

@@ -224,3 +224,9 @@ function path_prepend
path_remove "$1"
PATH="$1${PATH:+":$PATH"}"
}
# Creates a random string
rnd()
{
echo $RANDOM | md5sum | head -c 20
}