#!/bin/bash IFS= find ./Epubs -name "*.epub" -print | while IFS= read -r file do python app.py "$file" done