OSX: Dateien per Batch kopieren
Batchdatei unter OSX hat die Endung .command
Das Format der Datei sollte UTF-8 und Unix LF haben
Die command Datei muss ausführbar gemacht werden:
chmod u+x /verzeichnis/dateiname.command
Inhalt der Batchdatei:
cp /verzeichnis/dateiname.jpg /verzeichnis/
* dient als Wildcard
find . -type f -print0 | xargs -0 -I%%% cp %%% ../Import
Linux:
find . -type f -name "*.avi" -exec mv {} filme \;
Windows:
for /r C:\Folder0 %f in (*) do @copy "%f" C:\DestFolder
Quelle:
http://developer-blog.net/administration/alle-dateien-aus-unterordnern-k...