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.
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.
3) d2u - A dos2unix workalike.
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.
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)
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)
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)
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)
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)
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)