1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#!/bin/sh # # $Id$ # jatmp=default_config.cf.ja.$$ entmp=default_config.cf.en.$$ trap "rm -f $jatmp $entmp" 0 1 3 15 test -f $jatmp || rm -f $jatmp cat defaults/Configurations | while read file do cat defaults/$file.ja >> $jatmp echo "" >> $jatmp done mv $jatmp default_config.cf.ja exit 0