about summary refs log tree commit diff stats
path: root/ntranslate
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 /ntranslate
parent300f4554910095a6c8762f625816dafae55dea98 (diff)
downloadmu-dac833572b86b391bbca0df3b21f772df769ff95.tar.gz
5585
Diffstat (limited to 'ntranslate')
-rwxr-xr-xntranslate11
1 files changed, 6 insertions, 5 deletions
diff --git a/ntranslate b/ntranslate
index 24d87056..cdd5cb18 100755
--- a/ntranslate
+++ b/ntranslate
@@ -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 $*          |apps/tests    > a.tests
 
+echo "  dquotes"
 cat a.tests     |apps/dquotes  > a.dquotes
 
+echo "  assort"
 cat a.dquotes   |apps/assort   > a.assort
 
+echo "  pack"
 cat a.assort    |apps/pack     > a.pack
 
+echo "  survey"
 cat a.pack      |apps/survey   > a.survey
 
+echo "  hex"
 cat a.survey    |apps/hex      > a.elf
-
-xxd a.elf                      > a.xxd