Hi, I've installed enscript on my mac. But don't get it to print the complete project directory (with subdirectories). Which command would I use to print all *.as and *.mxml files including subdirs?
thx daniel
Hi, I've installed enscript on my mac. But don't get it to print the complete project directory (with subdirectories). Which command would I use to print all *.as and *.mxml files including subdirs?
thx daniel
find . -name "*.as" -or -name "*.mxml" | xargs enscript -P printer
Where you issue this command in the top most directory you want to print.