mirror of
https://github.com/remittor/zapret-openwrt.git
synced 2025-12-17 13:08:27 +03:00
13 lines
176 B
Bash
Executable File
13 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) 2024 remittor
|
|
LOG_FILE=$1
|
|
PID_FILE=$2
|
|
shift 2
|
|
: > $LOG_FILE
|
|
(
|
|
exec </dev/null >/dev/null 2>&1
|
|
"$@" >> $LOG_FILE 2>&1
|
|
) &
|
|
echo $! > $PID_FILE
|
|
exit 0
|