env
たとえば、すでに実行されているプロセスで特定の変数を変更する方法 対応する/proc/PID/environ?
"ファイル"はread-only
。
長期実行バッチジョブを終了せずにDISPLAY変数を変更または設定解除する必要があります。
答え1
不愉快なハッキングがなければ、これはできません。これを行うAPIもなく、環境が変更されたことをプロセスに知らせる方法もありません(どうせ実際には不可能だからです)。
これを行っても効果があるという保証はありません。プロセスは、突き刺す環境変数をすでにキャッシュする可能性が高いです(何も変更できないため)。
本当にこれを実行したい場合、問題が発生したときに問題を解決する準備ができている場合は、デバッガを使用できます。たとえば、次のスタックオーバーフローに関する質問をご覧ください。
他のプロセスの環境変数を変更する方法はありますか?
基本的に:
(gdb) attach process_id
(gdb) call putenv ("DISPLAY=your.new:value")
(gdb) detach
呼び出すことができる他の可能な関数はまたはsetenv
ですunsetenv
。
ターゲットプロセスが環境ブロックに対して「興味深い」操作を実行している場合は、これが機能しないか、重大な結果をもたらす可能性があることを覚えておくことが重要です。重要ではないプロセスを最初にテストしますが、これらのテストプロセスがテストするプロセスにできるだけ近いようにしてください。
答え2
gdbを現在のシェルに接続してenv変数を設定しようとすると、同じままになります(または存在しません)。
$] sudo gdb -p $$
(gdb) call putenv("TEST=1234")
$1 = 0
(gdb) call (char*) getenv("TEST")
$2 = 0x0
(gdb) detach
(gdb) quit
$] echo "TEST=$TEST"
TEST=
私が見つけたフテンプ動作しませんが、環境変数の設定する:
$] sudo gdb -p $$
(gdb) call (int) setenv("TEST", "1234", 1)
$1 = 0
(gdb) call (char*) getenv("TEST")
$2 = 0x55f19ff5edc0 "1234"
(gdb) detach
(gdb) quit
$] echo "TEST=$TEST"
TEST=1234
答え3
バッチジョブがファイルシステムからデータを読み取って変更を取得できる場合、これは必要ありません。一時的な一意のディレクトリのパスを使用してタスクを実行し、同じパスをサブシェルスクリプトに渡すだけです。スクリプトはそのディレクトリのファイルをロックし、ロックされたファイルの近くに新しい値を持つファイルを作成します。ジョブスクリプトは時々同じファイルをロックし、値ファイルの変更を解析して再読み込みします。 Unixシェルでロックを作成する方法については、またはunix shell lock file
を検索してくださいbash lock file
。すでに多くの解決策があります。
このソリューションの利点:
- WindowsやUnixなど、ほぼすべてのオペレーティングシステム間で移植可能
- 値ファイルが単純に維持される限り、ファイルから値を再読み込みするためにすべてのインタプリタ(unix / windows / etc)に対して複雑なパーサを作成して複製する必要はありません。
実装上の問題は次のとおりです。
- シェルリダイレクトフェーズに依存するファイルロックの実装(
flock
Linuxでは除外効果が実装され、Windowsでは除外機能が組み込まれています) - 変数の各値は単一行の値です(複数行ではありません)。
実装はここに保存されます。https://sourceforge.net/p/contools/contools/HEAD/tree/trunk/Scripts/Tools/std https://sourceforge.net/p/tacklelib/tacklelib/HEAD/tree/trunk/bash/tacklelib
実装bash
:
set_vars_from_locked_file_pair.sh
#!/bin/bash
# Another variant of a configuration file variables read and set script.
# The script must stay as simple as possible, so for this task it uses these parameters:
# 1. path where to lock a lock file
# 2. path where to read a file with variable names (each per line)
# 3. path where to read a file with variable values (each per line, must be the same quantity of lines with the variable names file)
# Script can be ONLY included by "source" command.
if [[ -n "$BASH" && (-z "$BASH_LINENO" || ${BASH_LINENO[0]} -gt 0) ]]; then
function set_vars_from_locked_file_pair()
{
# the lock file directory must already exist
if [[ ! -d "${1%[/\\]*}" ]]; then
echo "$0: error: lock file directory does not exist: \`${1%[/\\]*}\`" >&2
return 1
fi
if [[ ! -f "${2//\\//}" ]]; then
echo "$0: error: variable names file does not exist: \`$2\`" >&2
return 2
fi
if [[ ! -f "${3//\\//}" ]]; then
echo "$0: error: variable values file does not exist: \`$3\`" >&2
return 3
fi
function LocalMain()
{
# open file for direct reading by the `read` in the same shell process
exec 7< "$2"
exec 8< "$3"
# cleanup on return
trap "rm -f \"$1\" 2> /dev/null; exec 8>&-; exec 7>&-; trap - RETURN" RETURN
local __VarName
local __VarValue
# shared acquire of the lock file
while :; do
# lock via redirection to file
{
flock -s 9
# simultaneous iteration over 2 lists in the same time
while read -r -u 7 __VarName; do
read -r -u 8 __VarValue
# drop line returns
__VarName="${__VarName//[$'\r\n']}"
__VarValue="${__VarValue//[$'\r\n']}"
# instead of `declare -gx` because `-g` is introduced only in `bash-4.2-alpha`
export $__VarName="$__VarValue"
(( ${4:-0} )) && echo "$__VarName=\`$__VarValue\`"
done
break
# return with previous code
} 9> "$1" 2> /dev/null # has exclusive lock been acquired?
# busy wait
sleep 0.02
done
}
LocalMain "${1//\\//}" "${2//\\//}" "${3//\\//}" "${4:-0}"
}
fi
testlock.sh
#!/bin/bash
{
flock -x 9 2> /dev/null
read -n1 -r -p "Press any key to continue..."
echo >&2
} 9> "lock"
Windowsでも同様です(移植性の例)。
set_vars_from_locked_file_pair.bat
@echo off
rem Another variant of a configuration file variables read and set script.
rem The script must stay as simple as possible, so for this task it uses these parameters:
rem 1. path where to lock a lock file
rem 2. path where to read a file with variable names (each per line)
rem 3. path where to read a file with variable values (each per line, must be the same quantity of lines with the variable names file)
rem disable alternative variables expansion to avoid `!` character consumption
setlocal DISABLEDELAYEDEXPANSION
set "FILE_LOCK_PATH=%~1"
set "FILE_VAR_NAMES_PATH=%~2"
set "FILE_VAR_VALUES_PATH=%~3"
set "PRINT_VARS_SET=%~4"
set "FILE_LOCK_DIR=%~d1"
rem the lock file directory must already exist
if not exist "%FILE_LOCK_DIR%" (
echo.%~nx0: error: FILE_LOCK_DIR does not exist: "%FILE_LOCK_DIR%"
exit /b 1
) >&2
if not exist "%FILE_VAR_NAMES_PATH%" (
echo.%~nx0: error: FILE_VAR_NAMES_PATH does not exist: "%FILE_VAR_NAMES_PATH%"
exit /b 2
) >&2
if not exist "%FILE_VAR_VALUES_PATH%" (
echo.%~nx0: error: FILE_VAR_VALUES_PATH does not exist: "%FILE_VAR_VALUES_PATH%"
exit /b 3
) >&2
rem The endlocal works only in the same call context
endlocal
rem exclusive acquire of the lock file
:REPEAT_LOCK_LOOP
(
(
rem if lock is acquired, then we are in...
call :MAIN "%%~2" "%%~3" "%%~4"
call set "LASTERROR=%%ERRORLEVEL%%"
rem exit with return code from the MAIN
) 9> "%~1" && (del /F /Q /A:-D "%~1" & goto EXIT)
) 2>nul
rem Busy wait: with external call significantly reduces CPU consumption while in a waiting state
pathping localhost -n -q 1 -p 20 >nul 2>&1
goto REPEAT_LOCK_LOOP
:EXIT
exit /b %LASTERROR%
:MAIN
rem drop last error
type nul>nul
if %~30 NEQ 0 goto SET_WITH_PRINT
rem trick with simultaneous iteration over 2 lists in the same time
(
for /f "usebackq eol=# tokens=* delims=" %%i in ("%~1") do (
set /p "%%i="
)
) < "%~2"
exit /b 0
:SET_WITH_PRINT
rem trick with simultaneous iteration over 2 lists in the same time
(
for /f "usebackq eol=# tokens=* delims=" %%i in ("%~1") do (
set /p "%%i="
rem to filter out wrong matches of a variable from the `set "%%i"`
for /f "usebackq eol=# tokens=1,* delims==" %%j in (`set "%%i"`) do if /i "%%j" == "%%i" echo.%%i=%%k
)
) < "%~2"
exit /b 0
テストlock.bat
@echo off
(
pause
) 9> ./lock
ファイルに書き込むには、同じ方法でコードをロックします。