我正在尝试使用 systemd 和 glibc 版本 2.17 来识别系统,然后运行特定的代码集。这就是我得出的结果,但出现错误
./testing.sh: line 4: [[UNIT: command not found
代码:
#!/bin/sh
glib=`ldd --version | awk '/ldd/{print $NF}'`
ver=2.17
if [[`systemctl`=~-\.mount && $glib '==' $ver ]];then
echo "I have to execute certain specific stuff to glib ver 2.17"
fi