diff options
| author | tradam <git.tradam.fyi> | 2021-08-20 16:39:50 -0400 |
|---|---|---|
| committer | tradam <git.tradam.fyi> | 2021-08-20 16:39:50 -0400 |
| commit | f1720369d3552a59a1499af89a98ac1ceb69dfdb (patch) | |
| tree | cc3b7cecbd305b8f12c47b3b2fc61da51c9f9644 | |
| parent | acef17e2ed99ca25016cd602fa7d9b06711570f4 (diff) | |
| download | Plore-Tabletop-Game-f1720369d3552a59a1499af89a98ac1ceb69dfdb.tar.gz Plore-Tabletop-Game-f1720369d3552a59a1499af89a98ac1ceb69dfdb.zip | |
added helpful scripts
| -rwxr-xr-x | scripts/move.sh | 3 | ||||
| -rwxr-xr-x | scripts/rename.sh | 3 | ||||
| -rw-r--r-- | src/intro.mdown | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/scripts/move.sh b/scripts/move.sh new file mode 100755 index 0000000..568535d --- /dev/null +++ b/scripts/move.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +find ./src -type f -exec sed -i 's/\['"$1"'](.*)/['"$1"']('"$2"')/g' {} \; diff --git a/scripts/rename.sh b/scripts/rename.sh new file mode 100755 index 0000000..4b2efc0 --- /dev/null +++ b/scripts/rename.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +find ./src -type f -exec sed -i 's/\[.*]('"$2"')/['"$1"']('"$2"')/g' {} \; diff --git a/src/intro.mdown b/src/intro.mdown index 1e0981f..486a7f9 100644 --- a/src/intro.mdown +++ b/src/intro.mdown @@ -1 +1,3 @@ # Intro + +This is the Table Top rulebook that pairs with the world being created by the same designer. Both this system and the world are still being made and are in the very early stages. Enjoy the rules for what they are :D |
