This simple script joins multiple text files together allowing you to perform a single file DB import for example: #!/bin/bash for file in `ls ./*.txt` do cat $file >> all.files done |
|
Blog >
Combine multiple text filesposted 18 Aug 2009 02:22 by Peter Davies [ updated 18 Aug 2009 02:23 ]
|