From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Fri, 7 Nov 2014 21:03:49 +0100 From: sl@9front.org To: 9fans@9fans.net Message-ID: <11a9efd9821b9f9e4f44adfd7126c820@cirno.sfldmibb.det.wayport.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] Persistent font in Acme. Topicbox-Message-UUID: 255ba2fa-ead9-11e9-9d60-3106f5b1d025 > 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