Mac版本 Navicat16无限试用方案

(编辑:jimmy 日期: 2025/3/16 浏览:2)

[Bash shell] 纯文本查看 复制代码
#!/bin/bashset -efile=$(defaults read /Applications/Navicat\ Premium.app/Contents/Info.plist)regex="CFBundleShortVersionString = \"([^\.]+)"[[ $file =~ $regex ]]version=${BASH_REMATCH[1]}echo "Detected Navicat Premium version $version"case $version in    "16")        file=~/Library/Preferences/com.navicat.NavicatPremium.plist        ;;    "15")        file=~/Library/Preferences/com.prect.NavicatPremium15.plist        ;;    *)        echo "Version '$version' not handled"        exit 1       ;;esacecho -n "Reseting trial time..."regex="([0-9A-Z]{32}) = "[[ $(defaults read $file) =~ $regex ]]hash=${BASH_REMATCH[1]}if [ ! -z $hash ]; then    defaults delete $file $hashfiregex="\.([0-9A-Z]{32})"[[ $(ls -a ~/Library/Application\ Support/PremiumSoft\ CyberTech/Navicat\ CC/Navicat\ Premium/ | grep '^\.') =~ $regex ]]hash2=${BASH_REMATCH[1]}if [ ! -z $hash2 ]; then    rm ~/Library/Application\ Support/PremiumSoft\ CyberTech/Navicat\ CC/Navicat\ Premium/.$hash2fiecho " Done"

一句话新闻

Windows上运行安卓你用过了吗
在去年的5月23日,借助Intel Bridge Technology以及Intel Celadon两项技术的驱动,Intel为PC用户带来了Android On Windows(AOW)平台,并携手国内软件公司腾讯共同推出了腾讯应用宝电脑版,将Windows与安卓两大生态进行了融合,PC的使用体验随即被带入到了一个全新的阶段。