mirror of
https://github.com/FutaGuard/LowTechFilter.git
synced 2025-06-21 05:21:02 +08:00
13 lines
362 B
Bash
Executable File
13 lines
362 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Get the first argument
|
|
arg=$1
|
|
|
|
# Check the argument value
|
|
if [ "$arg" == "build" ]; then
|
|
pip install -r AutoBuild/requirements.txt && python AutoBuild/builder.py
|
|
elif [ "$arg" == "nrdlist" ]; then
|
|
pip install -r AutoBuild/requirements.txt && python AutoBuild/nrdlist.py
|
|
else
|
|
echo "Invalid argument. Please use 'build' or 'nrdlist'."
|
|
fi |