commit f7e355b5a47d65c981e14df0bd13d2ef0145e9bb Author: Sangelo Date: Tue Jul 11 08:35:03 2023 +0200 Add initial versions of dev scripts and a README diff --git a/README.md b/README.md new file mode 100644 index 0000000..50c850b --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# User Management Script for Bash +Simple user management script for Bash, to be able to learn how to use Bash. +by Sangelo & LogolicusZ as a school project. \ No newline at end of file diff --git a/dev-script.sh b/dev-script.sh new file mode 100755 index 0000000..8208d3d --- /dev/null +++ b/dev-script.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +echo "Starting a web server. Use the download script or wget to download the repository on the host machine." +python -m http.server \ No newline at end of file diff --git a/download-script.sh b/download-script.sh new file mode 100755 index 0000000..8c14caa --- /dev/null +++ b/download-script.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +echo "Downloading the scripts..." +wget "$1"/scripts . \ No newline at end of file