Enhancing the very limited Command Line.


 
Thread Tools Search this Thread
Operating Systems Linux Android Enhancing the very limited Command Line.
# 1  
Old 01-17-2015
Enhancing the very limited Command Line.

Sometime ago, somewhere on here, I said I was going to do some coding for Android.
I installed the full dev kit and a few months ago this MBP developed a failed HDD consequently destroying the dev environment.

I got an Android phone for XMAS and downloaded a terminal program.

I then found out how VERY limited the command line was/is.
I have no intention of rooting the phone at the moment as I want to see what I can create with the limited access available...
I also do not intend downloading a text editor - see the end of this upload...

Many things we take for granted are not available and there is very limited I/O;
printf, tr, sed, od, xxd, hexdump and many many other commands are not available.
This has set me on a quest to create some tools, albeit some might be slow, to aid is shell scripting.
(A basic DEMO hex dumper using echo is elsewhere on here but here are some more simpler other ones.)

1) ENVARC - Who remembers that then eh! <wink>
This is called as . ./ENVARC and adds the TMPDIR variable that does not exist in Android and extends the PATH to include another /some/path/to/Home/bin folder for executables.
Code:
#!/system/bin/sh
# ENVARC
PATH=$PATH:/storage/sdcard0/Home/bin
TMPDIR=/storage/sdcard0/Home/tmp

This can be called/sourced from the command line or inside any code you write...

2) reset - A terminal reset command that seems to reset the terminal and DOES clear the screen.
Code:
#!/system/bin/sh
# reset<CR>
echo -n -e "\x1Bc\x1B[0m\x1B[2J\x1B[H"
clear

3) d2u - A dos2unix workalike.
Code:
#!/system/bin/sh
# d2u <infile> [outfile]<CR>
. /storage/sdcard0/Home/bin/ENVARC
ifs_str="$IFS"
IFS=""
newfile=""
substring=0
outfile=$2
if [ "$1" == "" ]
then
	echo "Usage: d2u <infile> [outfile]..."
	exit 1
fi
if [ "$2" == "" ]
then
	outfile=$1
fi
read -s -d '' -r oldfile < $1
while [ $substring -lt ${#oldfile} ]
do
	if [ "${oldfile:$substring:1}" == $'\r' ]
	then
		substring=$((substring+1))
	else
		newfile=$newfile${oldfile:$substring:1} 
		substring=$((substring+1))
	fi
done
IFS="$ifs_str"
echo -n "$newfile" > $outfile
echo "File, $1, now converted to UNIX format..."
exit 0

And finally my editor running inside my new */bin folder, ( yes I do have Ctrl-C <wink>), cat > my_executable with Ctrl-C to exit...

A cleaned up version of the hex dumper is next then I am going to attempt a simple text editor as there are no editors either...

If there are better coding practices then I am completely open to them.

Bazza...
# 2  
Old 01-18-2015
Hi.

Off the top of my head:
Code:
shtool (1)           - The GNU Portable Shell Tool
busybox (1)          - The Swiss Army Knife of Embedded Linux

Best wishes ... cheers, drl
This User Gave Thanks to drl For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl command line option '-n','-p' and multiple files: can it know a file name of a printed line?

I am looking for help in processing of those options: '-n' or '-p' I understand what they do and how to use them. But, I would like to use them with more than one file (and without any shell-loop; loading the 'perl' once.) I did try it and -n works on 2 files. Question is: - is it possible to... (6 Replies)
Discussion started by: alex_5161
6 Replies

2. Shell Programming and Scripting

sed command to replace a line in a file using line number from the output of a pipe.

Sed command to replace a line in a file using line number from the output of a pipe. Is it possible to replace a whole line piped from someother command into a file at paritcular line... here is some basic execution flow.. the line number is 412 lineNo=412 Now i have a line... (1 Reply)
Discussion started by: vivek d r
1 Replies

3. Shell Programming and Scripting

sed command to replace a line at a specific line number with some other line

my requirement is, consider a file output cat output blah sdjfhjkd jsdfhjksdh sdfs 23423 sdfsdf sdf"sdfsdf"sdfsdf"""""dsf hellow there this doesnt look good et cetc etc etcetera i want to replace a line of line number 4 ("this doesnt look good") with some other line ... (3 Replies)
Discussion started by: vivek d r
3 Replies

4. Red Hat

Enhancing security of temporary folder

While enhancing security of my temporary folder in the post described in Secure temporary folders on existing Unix or Linux systems | SysAdmin.MD my redirection fails. This commands always fails echo "/mnt/tmp /tmp ext3 loop,noexec,nosuid,rw 0 0" >> /etc/fstab Can anybody please tell my why? (1 Reply)
Discussion started by: synthea
1 Replies

5. Shell Programming and Scripting

Enhancing Script (using loops) to go through for each group

Currently I have written a shell script that will add departments for one group (displayed below with configuration file). I want to enhance the script in order to add departments to multiple groups by: 1. Making changes to allow the script to loop through and write each dept/group combo into... (0 Replies)
Discussion started by: dolo21taf
0 Replies

6. Solaris

limited ping "command" at solaris

Hi... Iam new members at this forum. and I have a little problem with "command ping" what the "command to ping at limited time", for example at linux $ping -c5 10.0.0.62 and the responed as below: 64 bytes from 10.0.0.62: icmp_seq=1 ttl=128 time=0.843 ms 64 bytes from 10.0.0.62: icmp_seq=2... (3 Replies)
Discussion started by: srilinux
3 Replies
Login or Register to Ask a Question