1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2025-07-26 15:46:59 +00:00
Files
MyLFS-big_bash_script/test.sh
2022-03-02 10:07:31 -05:00

11 lines
199 B
Bash
Executable File

#!/usr/bin/bash
EXPECTED='[Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]'
OUTPUT=" $EXPECTED "
if [[ "$OUTPUT" == *"${EXPECTED}"* ]]
then
echo all good
else
echo shit
fi