1
0
mirror of https://github.com/DoctorWkt/unix-jun72.git synced 2026-04-25 20:01:24 +00:00

- included some more of my tools. These may not be useful to everyone.

This commit is contained in:
tim.newsham
2008-04-30 20:41:52 +00:00
parent a293418bb9
commit 846a4fd0a3
3 changed files with 281 additions and 0 deletions

29
tools/rebuild-split Executable file
View File

@@ -0,0 +1,29 @@
#!/bin/sh
# rebuild sources in a manner that lets you see the page splits.
# useful for editing the pages to get the inter-page flow to line
# up properly.
xcat() {
for fn in $*; do
cat $fn
echo "******* $fn end *******"
done
}
m() { xcat pages/$2 > rebuilt/$1.s; }
test -d rebuilt || mkdir rebuilt
m u0 e00-*
#m u1 e01-*
m u2 e02-*
#m u3 e03-*
#m u4 e04-*
m u5 e05-*
m u6 e06-*
m u7 e07-*
#m u8 e08-*
m u9 e09-*
m ux e10-*
#m sh e11-*
#m ini e12-*