You've already forked Zygisk-Assistant
mirror of
https://github.com/snake-4/Zygisk-Assistant.git
synced 2025-09-06 06:37:02 +00:00
5 lines
118 B
Bash
5 lines
118 B
Bash
program=${1}
|
|
expected_stderr=${2}
|
|
${program} 2>stderr.log >stdout.log
|
|
[ "${expected_stderr}" == "$(cat stderr.log)" ]
|