11 lines
353 B
Bash
Executable File
11 lines
353 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Остановить JA3/Wine в Whisky GOG-Install.
|
|
set -euo pipefail
|
|
GOG_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
# shellcheck source=gog-process.sh
|
|
source "${GOG_DIR}/gog-process.sh"
|
|
|
|
gog_kill_whisky_bottle
|
|
sleep 2
|
|
pgrep -fl "${BOTTLE_DIR}.*JA3" 2>/dev/null | head -5 || echo "OK: JA3/Wine в ${BOTTLE_NAME} остановлены"
|