Skip to content

Instantly share code, notes, and snippets.

@toguri
Created February 10, 2016 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toguri/88aef39f5a34debad526 to your computer and use it in GitHub Desktop.
Save toguri/88aef39f5a34debad526 to your computer and use it in GitHub Desktop.
1行毎にブツブツとやってく
#!/bin/sh
filename=$1
cat ${filename} | while read line
do
echo `python -c "import sys, urllib as ul; print ul.unquote_plus('${line}')"`
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment