nk23x
2/28/2015 - 12:02 AM

AppWererabbit export_app_list/app_list.csv to html

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