refactor: add random string alias to .bashrc and update flake.lock and vscode settings
All checks were successful
Nix Format Check / check-format (push) Successful in 38s

This commit is contained in:
2025-01-23 15:11:32 +01:00
parent 35ffc77056
commit 41d12d4d05
3 changed files with 11 additions and 7 deletions

View File

@@ -43,6 +43,9 @@ alias gcb='git checkout -b'
# netstat port in use check
alias port='netstat -atupn | grep LISTEN'
# random string (Syntax: random <length>)
alias random='openssl rand -base64'
# Alias for ls to l but only if it's an interactive shell because we don't want to override ls in scripts which could blow up in our face
if [ -t 1 ]; then
alias ls='l'