This file contains hidden or 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 | |
# | |
# A bash script/template for adding multi-processing to "stuff". | |
# | |
# Designed to be used for syncing files though. Takes "strings of stuff" (eg. | |
# filenames) into a queue, flattens duplicates, then spawns a worker after a | |
# few seconds that calls the processing script with the "stuff" as params. | |
# | |
# [email protected] | |
# 2011-02-24 |
NewerOlder