proper sorting, been a prob for a while

This commit is contained in:
Egan Ford 2020-03-12 09:53:46 -06:00
parent b217a0694a
commit 257c3242d5
7 changed files with 7 additions and 6 deletions

View File

@ -12,12 +12,12 @@ qrbytes: qrbytes.c
qrcodes.inc: qrcodes.pl qrbytes
curl -sL http://asciiexpress.net/gameserver/links.html | \
sort | \
sort -t\" -k 5 | \
./qrcodes.pl >$@
titles.inc: titles.pl
curl -sL http://asciiexpress.net/gameserver/links.html | \
sort | \
sort -t\" -k 5 | \
./titles.pl >$@
gameserverclient: gameserverclient.s titles.inc qrcodes.inc

Binary file not shown.

Binary file not shown.

View File

@ -37,7 +37,7 @@ else
fi
DOWN=$((LINE - 1))
TITLE=$(curl -sL http://asciiexpress.net/gameserver/links.html | sort | head -$LINE | tail -1 | awk -F\" '{print $4}')
TITLE=$(curl -sL http://asciiexpress.net/gameserver/links.html | sort -t\" -k 5 | head -$LINE | tail -1 | awk -F\" '{print $4}')
echo
echo -n "${TITLE}..."

View File

@ -8,6 +8,7 @@ on run argv
set my_down to item 6 of argv as number
set my_demo to item 7 of argv as number
-- tell application "/Applications/Virtual ][/7.6/Virtual ][.app"
tell application "Virtual ]["
activate
-- may need delay for this error: execution error: Virtual ][ got an error: Connection is invalid. (-609)

View File

@ -37,7 +37,7 @@ else
fi
DOWN=$((LINE - 1))
TITLE=$(curl -sL http://asciiexpress.net/gameserver/links.html | sort | head -$LINE | tail -1 | awk -F\" '{print $4}')
TITLE=$(curl -sL http://asciiexpress.net/gameserver/links.html | sort -t\" -k 5 | head -$LINE | tail -1 | awk -F\" '{print $4}')
echo
echo -n "${TITLE}..."

View File

@ -60,8 +60,8 @@ on run argv
-- normal speed
set speed to regular
-- down arrow 17x and return
repeat 17 times
-- down arrow 16x and return
repeat 16 times
type key down arrow
delay 0.03
end repeat