Skip to content

Instantly share code, notes, and snippets.

@Moligaloo
Created November 8, 2012 06:01
Show Gist options
  • Save Moligaloo/4037105 to your computer and use it in GitHub Desktop.
Save Moligaloo/4037105 to your computer and use it in GitHub Desktop.
Download latest online deb file of Baidu input method
#!/bin/sh
# This script is used to get the online version's deb in the current folder
host="mi.baidu.com"
filename=$(curl --silent "$host/Packages" | grep --only-matching 'debs/baidu_input.*deb')
echo "I'm going to download $host/$filename"
wget "$host/$filename"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment