Sample Google Android commands output.

This is the output of the uname command on my Android tablet. # uname Linux version 2.6.29-s70 ([email protected]) (gcc version 4.4.0 (GCC) ) #8 PREEMPT Wed Oct 27 21:55:55 CST 2010# uname Linux version 2.6.29-s70 ([email protected]) (gcc version 4.4.0 (GCC) ) #8 PREEMPT Wed Oct 27 21:55:55 CST 2010 And this is the output of … Read more

Using the command-line on Google Android, and other useful apps.

This terminal emulator application for the Google Android operating system allows the user to execute various commands on their Android devices. The command set is fairly restricted, but the ability to access the Linux command line on Android makes up for this. You may use the cat command to view the contents of files such … Read more

Using the UNIX ed editor. The simplest line editor for writing text files.

The ed(1) line editor is a very useful editor for text files on Linux and it is very simple to use. type ed to start it then to add text to an existing text file, type e my.txt. Then a to append text onto the text file. [13:20:35-*-homer@hungry-forest Desktop]$ ed e my.txt 1449 a[13:20:35-*-homer@hungry-forest Desktop]$ … Read more