cli_commands

Creating a new ssh-keypair

ssh-keygen -t ed25519
# or
ssh-keygen -t rsa -b 4096
# or
ssh-keygen -t ecdsa -b 521

Creating a symlink

ln -s [existing_file] [symlink]

Redirecting stderr to stdout and appending both to a file

[command] >> [file] 2>&1