Advertisement
evilqubit

terminal command android

Mar 8th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. useful android command "terminal"
  2. monkey
  3. A program that sends random events, used to test applications. (Like having a monkey playing with the device.)
  4.  
  5. logcat
  6. Prints the Android runtime log.
  7.  
  8. top
  9. Shows which processes are currently using the most CPU time.
  10.  
  11. whereis app – show possible locations of app
  12.  
  13. which app -
  14.  
  15. head file – output the first 10 lines of file
  16.  
  17. tail file – output the last 10 lines of file
  18.  
  19. ps – display your currently active processes
  20.  
  21. top – display all running processes
  22.  
  23. kill pid – kill process id pid
  24.  
  25. *killall proc – kill all processes named proc
  26.  
  27. bg – lists stopped or background jobs; resume a
  28. stopped job in the background
  29.  
  30. fg – brings the most recent job to foreground
  31. date – show the current date and time
  32.  
  33. cal – show this month's calendar
  34.  
  35. uptime – show current uptime
  36.  
  37. w – display who is online
  38.  
  39. whoami – who you are logged in as
  40.  
  41. finger user – display information about user
  42.  
  43. uname -a – show kernel information
  44.  
  45. cat /proc/cpuinfo – cpu information
  46.  
  47. cat /proc/meminfo – memory information
  48.  
  49. man command – show the manual for command
  50.  
  51. df – show disk usage
  52.  
  53. du – show directory space usage
  54.  
  55. free – show memory and swap usage
  56.  
  57. whereis app – show possible locations of app
  58.  
  59. which app – show which app will be run by default
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement