12 lines
185 B
Bash
Executable File
12 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# python venv
|
|
PATH="/mop/env/bin:$PATH"
|
|
|
|
cd /mop
|
|
# generate profiles
|
|
python profile_scanner.py -c $CONFIG_FOLDER -a $AUTH_FILE
|
|
|
|
# run main script
|
|
python -u test.py -s /tmp
|