Skip to content

Instantly share code, notes, and snippets.

@perillamint
Created August 29, 2018 02:03
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save perillamint/e2c0cdac8c5d56d143192870f63284c4 to your computer and use it in GitHub Desktop.
Save perillamint/e2c0cdac8c5d56d143192870f63284c4 to your computer and use it in GitHub Desktop.
CJ 택배 추적 스크립트
#!/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