Good, thanks.
IMO gpm is the most essential tool; after the Terminal.
The eventual aim of porting Mulinux to android, via the intermediate
cofirmation that it runs on a minimalist ash/busybox-based TC, seems
remote. Too many old library conflicts with 1999 Mulinux.
Executables without dependencies are no problem; as these novel-coded
unix2dos, dos2unix scripts prove:--------
#!/bin/ash
# \r\n -> \n, (C) 1998 by M. Andreoli
# [ use sed+tr ] oh, awk!
cat | ( sed "s/%/#perc#/g; s/@/#amp#/g" |\
tr '\012' '%'|\
tr '\015' '@'|\
sed 's/@%/%/g' |\
tr '%' '\012' |\
tr '@' '\015' |\
sed "s/#perc#/%/g; s/#amp#/@/g")
-------------------------------------
-> ls -l == ... 1355 Dec 17 06:37 Setup
-> cat Setup | /mnt/sdb1/Mul14r0/tree/tree/bin/unix2dos | wc -l -c
== 48 1403 <- unix2dos adds 48 chars for 48 lines: 1355+48 == 1403