2019-11-12 10:31:51 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
cat > README.md << EOF
|
|
|
|
# A collection of useful scripts around Elite Dangerous #
|
|
|
|
|
2020-01-08 08:30:27 +01:00
|
|
|
## Requirements ##
|
|
|
|
|
|
|
|
* argcomplete
|
|
|
|
* argparse
|
|
|
|
* requests
|
|
|
|
* Tkinter
|
|
|
|
|
|
|
|
You probably want to install your distribution/OS package for Tkinter instead of
|
|
|
|
using pip. Then do the good old \`pip install --user -r requirements.txt\` or
|
|
|
|
\`pip3 install --user -r requirements.txt\`.
|
|
|
|
|
2019-11-12 10:31:51 +01:00
|
|
|
## edsm-getnearest.py ##
|
|
|
|
|
|
|
|
\`\`\`
|
|
|
|
EOF
|
|
|
|
./edsm-getnearest.py -h >> README.md
|
|
|
|
cat >> README.md << EOF
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
## explorationtools.py ##
|
|
|
|
|
|
|
|
\`\`\`
|
|
|
|
EOF
|
|
|
|
./explorationtools.py -h >> README.md
|
|
|
|
cat >> README.md << EOF
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
\`\`\`
|
|
|
|
EOF
|
|
|
|
./explorationtools.py bodycount -h >> README.md
|
|
|
|
cat >> README.md << EOF
|
|
|
|
\`\`\`
|
|
|
|
|
|
|
|
\`\`\`
|
|
|
|
EOF
|
|
|
|
./explorationtools.py distancebetween -h >> README.md
|
2020-01-05 19:20:20 +01:00
|
|
|
cat >> README.md << EOF
|
|
|
|
\`\`\`
|
2019-11-12 10:31:51 +01:00
|
|
|
|
2020-01-05 19:20:20 +01:00
|
|
|
\`\`\`
|
|
|
|
EOF
|
2020-01-06 17:28:40 +01:00
|
|
|
./explorationtools.py findcommander -h >> README.md
|
2019-11-12 10:31:51 +01:00
|
|
|
cat >> README.md << EOF
|
|
|
|
\`\`\`
|
2020-01-08 08:30:27 +01:00
|
|
|
|
2020-01-08 14:54:39 +01:00
|
|
|
\`\`\`
|
|
|
|
EOF
|
|
|
|
./explorationtools.py systemlist -h >> README.md
|
|
|
|
cat >> README.md << EOF
|
|
|
|
\`\`\`
|
|
|
|
|
2020-01-08 08:30:27 +01:00
|
|
|
## Need Help / Want to Contribute? ##
|
|
|
|
|
|
|
|
Just [file an issue](https://github.com/alterNERDtive/elite-scripts/issues/new)
|
|
|
|
here or [hop into Discord](https://discord.gg/uUKFdW) if that is your thing.
|
2019-11-12 10:31:51 +01:00
|
|
|
EOF
|