#!/bin/sh ARCHIVOS=$(find . -name "*.tex") for file in $ARCHIVOS; do aspell --mode=tex --extra-dicts=./dict-tp-diso check ${file}; done