This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Latex files | |
*.aux | |
*.glo | |
*.idx | |
*.log | |
*.toc | |
*.ist | |
*.acn | |
*.acr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Romain Bochet | |
# Use as a cron | |
# Print all the files included in a folder with lp, and move them in another folder. | |
# Use absolute path (mandatory for crons) | |
SOURCE="/home/dropbox/print/" | |
DONE="/home/romain/printed/" | |
LOCK="/tmp/printerlock" |