mirror of
https://github.com/krglaws/MyLFS.git
synced 2025-07-26 15:46:59 +00:00
11 lines
199 B
Bash
Executable File
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
|