Skip to content

Instantly share code, notes, and snippets.

@nk23x
Created February 28, 2015 00:02
Show Gist options
  • Save nk23x/36b8f5a373aea1503369 to your computer and use it in GitHub Desktop.
Save nk23x/36b8f5a373aea1503369 to your computer and use it in GitHub Desktop.
AppWererabbit export_app_list/app_list.csv to html
(echo -e "<html>\n<body>\n\n<ul>"; \
cat export_app_list/latest_*/app_list.csv \
| grep -v 'Created by AppWererabbit' \
| sort -d \
| perl -pe 's/\"(.*)\",\"(.*)\"/ <li>\n <a href=\"https:\/\/play.google.com\/store\/apps\/details?id=$1\">\n $2 ($1)\n <\/a>\n <\/li>/g;'; \
echo -e "</ul>\n\n</body>\n</html>") \
| grep -v 'version=' \
> /tmp/apps.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment