Skip to content

Instantly share code, notes, and snippets.

@maraisr
Created January 30, 2019 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maraisr/42eeaff047a5f1609101f4b66f042753 to your computer and use it in GitHub Desktop.
Save maraisr/42eeaff047a5f1609101f4b66f042753 to your computer and use it in GitHub Desktop.
# 1. redo last command but as root
sudo !!
# 2. open an editor to run a command
ctrl+x+e
# 3. create a super fast ram disk
mkdir -p /mnt/ram
mount -t tmpfs tmpfs /mnt/ram -o size=8192M
# 4. don't add command to history (note the leading space)
ls -l
# 5. fix a really long command that you messed up
fc
# 6. tunnel with ssh (local port 3337 -> remote host's 127.0.0.1 on port 6379)
ssh -L 3337:127.0.0.1:6379 root@emkc.org -N
# 7. quickly create folders
mkdir -p folder/{sub1,sub2}/{sub1,sub2,sub3}
# 8. intercept stdout and log to file
cat file | tee -a log | cat > /dev/null
# bonus: exit terminal but leave all processes running
disown -a && exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment