about summary refs log tree commit diff stats
path: root/translate
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-08-25 18:23:52 -0700
committerKartik Agaram <vc@akkartik.com>2019-08-25 20:07:15 -0700
commitdac833572b86b391bbca0df3b21f772df769ff95 (patch)
treefdbe6840e611c7b029831008da0e7a89522aa2eb /translate
parent300f4554910095a6c8762f625816dafae55dea98 (diff)
downloadmu-dac833572b86b391bbca0df3b21f772df769ff95.tar.gz
5585
Diffstat (limited to 'translate')
-rwxr-xr-xtranslate11
1 files changed, 6 insertions, 5 deletions
diff --git a/translate b/translate
index 7acf92c4..a3acacc6 100755
--- a/translate
+++ b/translate
@@ -12,22 +12,23 @@
 #     Again, that's for subsequent scripts.
 
 set -e
-set -v
 
 ./build
 
-echo `cat $* |grep -v '^\s*#\|^\s*$' |wc -l` lines
-
+echo "  tests"
 cat $*          |./subx_bin run apps/tests    > a.tests
 
+echo "  dquotes"
 cat a.tests     |./subx_bin run apps/dquotes  > a.dquotes
 
+echo "  assort"
 cat a.dquotes   |./subx_bin run apps/assort   > a.assort
 
+echo "  pack"
 cat a.assort    |./subx_bin run apps/pack     > a.pack
 
+echo "  survey"
 cat a.pack      |./subx_bin run apps/survey   > a.survey
 
+echo "  hex"
 cat a.survey    |./subx_bin run apps/hex      > a.elf
-
-xxd a.elf                                     > a.xxd