Joopi
[Shell] Bestimmte Anzahl Dateien verschieben/kopieren - Druckversion

+- Joopi (https://forum.hermann-splitthoff.de)
+-- Forum: Wissenswertes (https://forum.hermann-splitthoff.de/forumdisplay.php?fid=1)
+--- Forum: Programmieren (https://forum.hermann-splitthoff.de/forumdisplay.php?fid=6)
+--- Thema: [Shell] Bestimmte Anzahl Dateien verschieben/kopieren (/showthread.php?tid=1264)



Bestimmte Anzahl Dateien verschieben/kopieren - Joopi - 04-11-2024

Das Kopieren und Verschieben einer gewissen Anzahl an Dateien, die unbestimmt ist, kann wie folgt in der Bash erledigt werden:

Code:
anzahl=30000
find /quellordner -type f | head -n $anzahl | xargs -I {} mv {} /zielordner
find /quellordner -type f | head -n $anzahl | xargs -I {} cp {} /zielordner