> I like the idea of making a small script but I couldn't make it work.
> What I want is to get this to execute without to much typing:
> term%acme -f /lib/font/bit/lucidasans/latin1.10.font and that's it.
> Any suggestion for a script and how to execute it would be most
> appreciated.
Anything you type into the shell that produces the desired result is
a valid shell script.
So, you could make a script $home/bin/rc/a:
#!/bin/rc
acme -f /lib/font/bit/lucidasans/latin1.10.font
Do chmod +xr $home/bin/rc/a and then run it by just typing a.
sl