[22:35] Heyo - anyone here know how I could append an echo to a bunch of files all at once ... i.e. echo "whatever" >> *.txt ??? apparently ambiguous redirects are a no-go. :D [23:33] funnylookinhat: xargs might work [23:34] funnylookinhat: e.g. ls *somefiles* | xargs echo "*whatever* [23:34] funnylookinhat: e.g. ls *somefiles* | xargs echo "*whatever* >> [23:36] joey, figured it out with tee :) [23:36] echo "whatever" | tee -a *.txt [23:36] I had no idea tee existed... [23:36] lol [23:37] ah tee! [23:37] yes that will work too [23:39] :)