Move Z to G

This commit is contained in:
Case Duckworth 2021-02-04 12:39:49 -06:00
parent b10063f0b9
commit 114a7be9d0
1 changed files with 12 additions and 3 deletions

15
Z → G
View File

@ -27,8 +27,17 @@ Nav() { # Nav <INDEX> <files...>
alias T=sed\ q
# redefine X for better logging
X()(P>&2 $F;
eval "$(P "cat<<.";cat;P;P .)")
X()(eval "$(P "cat<<.";cat;P;P .)")
. hell/hell
# MAIN
for F;do X<L>O/${F#I};done
for F
do
printf>&2 '%s\t...' "$F"
X<L>O/${F#I} && {
echo>&2 "OK."
} || {
echo>&2 "FAIL."
}
done