about summary refs log tree commit diff stats
path: root/translate
diff options
context:
space:
mode:
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