Skip to content

Instantly share code, notes, and snippets.

@svetlyak40wt
Created July 26, 2013 08:30
Show Gist options
  • Save svetlyak40wt/6087231 to your computer and use it in GitHub Desktop.
Save svetlyak40wt/6087231 to your computer and use it in GitHub Desktop.
A script to try all Pelican themes.
for theme in $(ls --color=never ~/pelican-themes/)
do
echo "Trying $theme"
pelican content \
-o output \
-s pelicanconf.py \
-t ~/pelican-themes/${theme}
read -p "Press Enter to continue..."
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment