Sorry for my previous, i've not be carefull enough!
Now this answer exactly to the request:
declare -a files
files=(*.sms.txt)
perl -pe 's/$/$ARGV/' ${files[@]} >>sms.txt
rm -f ${files[@]}
As if you could write for file in *.sms.txt, this mean that a uniq command line could hold your request.
So for ensure that only logged files will be deleted, the list of files provided in command line is stored before, so log operation and rm -f will be done on same file list. (So if a new sms are incoming in the time we store all other, this one will not be stored, but will not be deleted.)
The same this will do some cosmetic (add a separation between sms and sms-id and remove .sms.txt):
declare -a files
files=(*.sms.txt)
perl -pe 'my $ad=$1 if $ARGV=~m/^(.*).sms.txt/;s/$/..$ad/;' ${files[@]} >>sms.txt
rm -f ${files[@]}
gsedfilter over a few million files (a total of 60 GBs) that converted them from an xml-like format to a json-like (not quite though, but the important thing is that it was much much more complex than what this question needs) and it took about 2 hours to finish. Granted, it was an 8-core machine with 15000 RPM HDD, but still, ridiculously faster than I could've hoped. (and note that I saidgsed, notsed. OS X'ssedwas more than two orders of magnitude slower). – Pooria Azimi Nov 11 '12 at 11:17