Yaptığın tek bir sözdizimi hatası var. Sayı girmeden önce bir boşluk bıraktın $ApplicationVersionNumber
. Çoğu uygulama bir version.plist dosyasına sahip değildir, ancak her zaman kendi Info.plist'lerinde sürüm bulunur.
İşte betiğin sabit bir sürümü, birkaç iyileştirme ile:
#!/bin/sh
ApplicationName=/Applications/FakeApp.app
ApplicationVersionNumber=1.0
echo $ApplicationName
#Check if Directory Exist
if [ ! -d $ApplicationName ]; then
echo "$ApplicationName is not installed"
exit 123456
fi
echo "$ApplicationName is installed"
# Check Version
VersionCheck=`plutil -p "${ApplicationName}/Contents/Info.plist" | grep "CFBundleShortVersionString.*$ApplicationVersionNumber"`
echo $VersionCheck
if [ ${#VersionCheck} != 0 ]; then
echo "$ApplicationName $ApplicationVersionNumber is Installed"
exit 0
fi
echo "$ApplicationName $ApplicationVersionNumber is NOT Installed"
exit 1
- Bunun
plutil -p
yerine kullanır cat
, çünkü plutil, plistin güzel ve okunabilir bir versiyonunu XML biçiminde olmasa bile yazdırabilir.
- Anahtar (CFBundleShortVersionString)
.*
ve sonra değeri için greps . Bu daha iyi çünkü onun gibi şeyleri tetiklemesini istemiyorsunuz LSMinimumSystemVersion
.
- Daha fazla tırnak ekledim çünkü alıntıları severim ve işlerin (genellikle) bu şekilde kırılma olasılığı daha düşüktür.
Böyle yazmış olurdum:
#!/bin/bash
app_path="$1"
desired_version="$2"
#Get the line, regardless of whether it is correct
version_line=$(plutil -p "${app_path}/Contents/Info.plist" | grep "CFBundleShortVersionString")
if [[ $? -ne 0 ]]; then
version_line=$(plutil -p "${app_path}/Contents/Info.plist" | grep "CFBundleVersion")
if [[ $? -ne 0 ]]; then #if it failed again, the app is not installed at that path
echo "$app_path not installed at all"
exit 123456
fi
fi
#Some text editing to get the real version number
real_version=$(echo $version_line | grep -o '"[[:digit:].]*"' | sed 's/"//g')
if [ "$real_version" = "$desired_version" ]; then
echo "$app_path $desired_version is installed"
exit 0
fi
echo "${app_path}'s version is $real_version, not $desired_version"
exit 1
Bunun avantajı, gerçek sürüm dizesini kontrol etmesidir, bu nedenle 1.3 ve 1.3.1 koyarsanız, farklı bir sürüm olduğunu bildirir. $1
ve $2
gibi iletilen komut satırı argümanları./script.sh '/Applications/FakeApp.app' '1.3'
Ayrıca, diğeri 121 için 1.1 değerinde doğru sayılır çünkü grep .
joker karakter olarak sayılır .