1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37#!/bin/sh # Translate a given Mu program into an ELF binary on Linux. set -e cat $* [0-9]*.mu |./mu > a.subx ./translate_subx [0-9]*.subx mu-init.subx a.subx
#!/bin/sh # Translate a given Mu program into an ELF binary on Linux. set -e cat $* [0-9]*.mu |./mu > a.subx ./translate_subx [0-9]*.subx mu-init.subx a.subx