<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>robocopy &#8211; SystemTechnics</title>
	<atom:link href="https://www.systemtechnics.de/tag/robocopy/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.systemtechnics.de</link>
	<description>IT Consulting</description>
	<lastBuildDate>Sat, 13 May 2023 15:52:15 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.systemtechnics.de/wp-content/uploads/cropped-2003-logo-st-transparanet-x200-32x32.png</url>
	<title>robocopy &#8211; SystemTechnics</title>
	<link>https://www.systemtechnics.de</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Mittels rsync Dateien kopieren</title>
		<link>https://www.systemtechnics.de/mittels-rsync-dateien-kopieren/</link>
		
		<dc:creator><![CDATA[knut]]></dc:creator>
		<pubDate>Sun, 11 Feb 2018 12:14:17 +0000</pubDate>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux/OSX]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[robocopy]]></category>
		<category><![CDATA[rsync]]></category>
		<guid isPermaLink="false">http://www.systemtechnics.de/?p=2402</guid>

					<description><![CDATA[Hier mal ein schnelles Beispiel wie ich meine Daten (vom Handy) auf einen Server mittels rsync kopiere. SRCP="Backup DCIM Pictures [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Hier mal ein schnelles Beispiel wie ich meine Daten (vom Handy) auf einen Server mittels rsync kopiere.</p>
<p><span id="more-2402"></span></p>
<pre><code>        SRCP="Backup DCIM Pictures Documents Ringtones DJI/dji.go.v4/DJI* timesheeter_*"

        for d in $SRCP ; do
        #       echo $d 
        rsync --size-only --exclude "*.tmp" --exclude ".thumbnails" --progress -rvH /sdcard/$d knut@10.0.0.10:3tsicherung
        done

        SRCP="upass dom reverse speedtest-cli"
        for d in $SRCP ; do
        #       echo $d
        rsync --size-only --exclude "*.tmp" --exclude ".thumbnails" --progress -rvH /data/data/com.termux/files/usr/bin/$d knut@10.0.0.10:3tsicherung/bin/
        done
</code></pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Merker: Robocopy</title>
		<link>https://www.systemtechnics.de/merker-robocopy/</link>
		
		<dc:creator><![CDATA[knut]]></dc:creator>
		<pubDate>Fri, 27 May 2016 06:43:38 +0000</pubDate>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[Batch/Powershell]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[kopieren]]></category>
		<category><![CDATA[robocopy]]></category>
		<guid isPermaLink="false">http://www.systemtechnics.de/?p=1634</guid>

					<description><![CDATA[Schnell und bequem Daten inkl. Dateirechte mit robocopy kopieren. robocopy SOURCE DESTINATION /MIR /B /R:1 /W:1 /COPYALL Parameter Erklärung SOURCE [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Schnell und bequem Daten inkl. Dateirechte mit robocopy kopieren.</p>
<p><span id="more-1634"></span></p>
<pre><code>robocopy SOURCE DESTINATION /MIR /B /R:1 /W:1 /COPYALL</code></pre>
<table class="uk-table uk-table-hover uk-table-striped uk-table-condensed" style="width: 100%;">
<thead>
<tr>
<th style="width: 19.477912%;">Parameter</th>
<th style="width: 80.421687%;">Erklärung</th>
</tr>
</thead>
<tbody>
<tr>
<td style="width: 19.477912%;">SOURCE</td>
<td style="width: 80.421687%;">Quellverzeichnis in dem die originalen Dateien liegen.</td>
</tr>
<tr>
<td style="width: 19.477912%;">DESTINATION</td>
<td style="width: 80.421687%;">Zielverzeichnis.</td>
</tr>
<tr>
<td style="width: 19.477912%;">/MIR</td>
<td style="width: 80.421687%;">Spiegelt ein komplettes Verzeichnis. Löscht also auch Dateien im Ziel, die in der Quelle nicht mehr vorhanden sind.</td>
</tr>
<tr>
<td style="width: 19.477912%;">/B</td>
<td style="width: 80.421687%;">Dateien werden im Backup-Modus kopiert.</td>
</tr>
<tr>
<td style="width: 19.477912%;">/R:1</td>
<td style="width: 80.421687%;">Definiert die maximalen Fehler, die beim Kopieren übergangen werden (standardmäßig 1 Mio.).</td>
</tr>
<tr>
<td style="width: 19.477912%;">/W:1</td>
<td style="width: 80.421687%;">Definiert die Sekunden, die gewartet wird, wenn ein Kopiervorgang nicht erfolgreich war, um es erneut zu versuchen.</td>
</tr>
<tr>
<td style="width: 19.477912%;">/COPYALL</td>
<td style="width: 80.421687%;">Kopiert alle Dateiattribute. Dazu muss das Dateisystem auf dem Quell- und dem Zielverzeichnis im NTFS-Format formatiert sein.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
