From df5bd8153cf76dbff4739a8c58939ac940afd1b0 Mon Sep 17 00:00:00 2001 From: John Donaldson Date: Wed, 10 Oct 2018 10:29:37 -0500 Subject: [PATCH 1/2] Fix links to documentation --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d3a668c..6f21959 100644 --- a/README.md +++ b/README.md @@ -5,15 +5,15 @@ Dirtbags Tanks is a game in which you pit your coding abilities against other hackers. You write a program for your tank, set it out on the battlefield, and watch how your program fares against tanks written by other players. Dirtbags Tanks is frequently a component of -[Dirtbags Capture The Flag](/ctf/). +[Dirtbags Capture The Flag](https://dirtbags.github.io/contest/). Documentation ------------- * [Homepage](https://dirtbags.github.io/tanks/) -* [History](doc/history.md) -* [Running](doc/running.md) +* [History](docs/history.md) +* [Running](docs/running.md) Author From bdb4f1b4f97a182e6492eb43393395b563a99055 Mon Sep 17 00:00:00 2001 From: Jonathan Beaulieu Date: Thu, 15 Apr 2021 12:43:08 -0400 Subject: [PATCH 2/2] Update running.md Renamed `round.sh` -> `run-tanks` since it appears `round.sh` doesn't exist anymore. --- docs/running.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/running.md b/docs/running.md index 3ad5628..66dd857 100644 --- a/docs/running.md +++ b/docs/running.md @@ -9,9 +9,9 @@ and I would love it if someone proposed a merge to clearly illustrate how to run When I spin up a new tanks game, typically I run something like: - while sleep 60; do ./round.sh */; done + while sleep 60; do ./run-tanks */; done -This assumes all your tanks directories are in the same place as `round.sh`. +This assumes all your tanks directories are in the same place as `run-tanks`. @@ -24,7 +24,7 @@ hodgepodge of C, Bourne shell, and awk, but at least each piece is fairly simple to audit. -### round.sh tank1 tank2 ... +### run-tanks tank1 tank2 ... Runs a single round, awards points with rank.awk, and creates a new summary.html with summary.awk. This is the main interface that you want