5241f43e创建于 2024年7月31日历史提交
#!/bin/sh

URL="$(curl -sL 'https://www.intel.com/content/www/us/en/download/684897/intel-software-development-emulator.html' | \
    grep -oP '(?<=data\-href=")(https://[^\"]+)/sde-external-([0-9\.\-]+)-lin.tar.xz' | head -n1)"
if [ ! -e "$1" ]; then
  mkdir -p "$1"
fi
curl -sL "${URL}" | \
  tar --strip-components 1 -JxC "$1"