Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. # Shortcuts terminal
  2. #-------------------------------------------------------
  3.  
  4. CTRL+A # move to beginning of line
  5. CTRL+B # moves backward one character
  6. CTRL+C # halts the current command
  7. CTRL+D # deletes one character backward or logs out of current session, similar to exit
  8. CTRL+E # moves to end of line
  9. CTRL+F # moves forward one character
  10. CTRL+G # aborts the current editing command and ring the terminal bell
  11. CTRL+J # same as RETURN
  12. CTRL+K # deletes (kill) forward to end of line
  13. CTRL+L # clears screen and redisplay the line
  14. CTRL+M # same as RETURN
  15. CTRL+N # next line in command history
  16. CTRL+O # same as RETURN, then displays next line in history file
  17. CTRL+P # previous line in command history
  18. CTRL+R # searches backward
  19. CTRL+S # searches forward
  20. CTRL+T # transposes two characters
  21. CTRL+U # kills backward from point to the beginning of line
  22. CTRL+V # makes the next character typed verbatim
  23. CTRL+W # kills the word behind the cursor
  24. CTRL+X # lists the possible filename completefions of the current word
  25. CTRL+Y # retrieves (yank) last item killed
  26. CTRL+Z # stops the current command, resume with fg in the foreground or bg in the background
  27.  
  28. DELETE # deletes one character backward
  29. !! # repeats the last command
  30.  
  31.  
  32.  
  33. # NETWORK ADMINISTRATION
  34. #-------------------------------------------------------
  35. nslookup <domain_name>
  36.  
  37.  
  38. # DISK ADMINISTRATION
  39. #-------------------------------------------------------
  40. df -H --output=source,size,used,avail
  41.  
  42. # MACHINE STATS
  43. #-------------------------------------------------------
  44. top
  45. htop
  46. vmstat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement