8 lines
284 B
Bash
Executable File
8 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Oneliner to find script's directory. Please note - last path component should NOT be symlink.
|
|
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )";
|
|
|
|
/usr/bin/python3 ${SCRIPT_DIR}/src/utils_network_impairment.py --start
|
|
|