Created
August 29, 2018 02:03
-
-
Save perillamint/e2c0cdac8c5d56d143192870f63284c4 to your computer and use it in GitHub Desktop.
CJ 택배 추적 스크립트
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "$1" = "" ]; then | |
echo "Usage: $0 <slip no>" | |
exit 1; | |
fi | |
curl -s "http://nplus.doortodoor.co.kr/web/detail.jsp?slipno=$1" | iconv -f euc-kr -t utf-8 | elinks -dump 1 /dev/stdin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment