Basic commands for android!!


 
Thread Tools Search this Thread
Operating Systems Linux Android Basic commands for android!!
# 15  
Old 09-02-2013
Try
Code:
echo -en "\033[2J\033[1;1H

# 16  
Old 09-03-2013
To shift the cursor to (H)ome you could try manually first to see if this works:-
Code:
echo -n $'\x1B[H'

If not then you might have to juggle the vertical tabs or cursor position using similar methods as before see here:-

ANSI escape code - Wikipedia, the free encyclopedia

EDIT:
An example:-
Code:
echo -n $'\x1B[2J'$'\x1B[24A'

This works on the very limited OSX 10.7.5 "/bin/echo" command too...

Last edited by wisecracker; 09-03-2013 at 04:29 AM.. Reason: Add an example...
This User Gave Thanks to wisecracker For This Post:
# 17  
Old 09-03-2013
Quote:
Originally Posted by shekhar_4_u
cat > file_name worked for me. I am surprised why I did not try it earlier. Thanks Cero. Smilie

saved echo -e -n "\033[2J" in my /system/bin file as 'clear'. Its working now but same problem remains. Cursor doesn't go to top left of the screen.
You do not have a real terminal... (edited by neo). There's entire categories of things it cannot or will not do. Most people, once they root a machine, install sshd so they can login with a real terminal and do real things.
# 18  
Old 09-04-2013
Quote:
Originally Posted by Corona688
You do not have a real terminal, just some java pretend junk. There's entire categories of things it cannot or will not do. Most people, once they root a machine, install sshd so they can login with a real terminal and do real things.
Thanks Corona.

I installed BusyBox and thereafter I am able to access 'clear', 'vi' etc commands.

I also installed sshd server and client. Accessed my cell through my laptop using ssh also connected to my Database server through mobile.

thanks Everyone!! Smilie
# 19  
Old 09-05-2013
Just wondering through the forum and find this good one so wanted to like the discussion.
It was very useful visit for me...
Keep it up......

Last edited by PheekaJabal; 12-12-2013 at 02:58 AM..
# 20  
Old 09-05-2013
Quote:
Originally Posted by PheekaJabal
Just wondering through the forum and find this good one so wanted to like the discussion.
It was very useful visit for me...
Keep it up......
Welcome to the family.SmilieSmilie

Certainly, It is one of the best forums.Smilie
This User Gave Thanks to shekhar_4_u For This Post:
# 21  
Old 09-05-2013
Quote:
Originally Posted by shekhar_4_u
Welcome to the family.SmilieSmilie

Certainly, It is one of the best forums.Smilie
Yeah....!
I agree......
hope for a long stay here...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Android

Basic Android platform information.

I am thinking of developing an app' for Android mobile devices... Two questions here:- 1) Does anyone _develop_ for the Android _mobile_ platform? If so do you use OSX 10.7.5 or greater as your _development_platform_? 2) I know ********* is gonna say that the Android terminal/shell is... (13 Replies)
Discussion started by: wisecracker
13 Replies

2. UNIX for Dummies Questions & Answers

Noob scripting question with android ADB commands

Hi I'm pretty new to scripting and I've been googling around looking for an answer but have yet to come up with a proper solution. I work with multiple android devices at a time and I'm looking to simplify my life with a script. Basically I'm looking for a script that takes the device ID's and then... (2 Replies)
Discussion started by: Onyoursix
2 Replies

3. Android

Example Linux Commands on Android

In case you are interested, here is a partial list of linux-like commands on Android OS: /sbin adbd devmgr recovery dfta init dfta.sh fat.format redbend_ua /system/bin (partial list) sh date netstat mount umount (0 Replies)
Discussion started by: Neo
0 Replies

4. Solaris

Required list of all basic commands for a beginners

I want the commands list to view only files, and only directories and all the basic commands for a beginner of solaris (1 Reply)
Discussion started by: omsingh2k5
1 Replies

5. Red Hat

Segmentation fault on basic linux commands

Hello out there!!! I have a Red Hat Entreprise Linux 4 server and I am encountering this error # grep Segmentation Fault I know it is not the right use of grep command, but I did that just for testing purpose,then I did # which grep /bin/grep # ls -l /bin/grep -rwxr-xr-x 1 root... (4 Replies)
Discussion started by: inhaki
4 Replies

6. UNIX for Dummies Questions & Answers

Vi editor basic commands

I would be thankful if anyone could show me commands to do the following tasks in vi:1) How can I undo or redo my last action in vi editor. 2) How can I copy only a word or a portion of line (not the whole line) in vi, like we can select text and press ctrl+c in notepad to copy any text. 3)... (4 Replies)
Discussion started by: nervous
4 Replies

7. Windows & DOS: Issues & Discussions

Basic Unix Commands for cygwin

Hi. I'm New user for this Forum.Presently i'm working with Cygwin I want to know the basic commands that will be used for Cygwin. Can anyone guide me on this regards Thanks & Regards Sanjay (0 Replies)
Discussion started by: sanjay.karthik
0 Replies

8. Shell Programming and Scripting

Need help in sftp basic commands

I'm trying to make use of some common generic functions already present in the scripts loaded in the environment. A variable VAR1 is declared and used in the generic functions. Its value is also set in the generic function. Now I need to use that generic function for PURGING of some old files... (2 Replies)
Discussion started by: livetaurean19
2 Replies

9. UNIX for Dummies Questions & Answers

basic commands documentation

I'm training a newbie on unix. He's in another site and I can't share my unix books with him - is there any documentation on basic unix commands he can download? (1 Reply)
Discussion started by: kdgorton
1 Replies

10. UNIX for Dummies Questions & Answers

Unix basic commands

I need a sheet with the basic unix commands , and commands for VI editor. Does anyone know where i can get them. (3 Replies)
Discussion started by: Peter Spellman
3 Replies
Login or Register to Ask a Question