<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://wiki.leese-family.de/index.php?action=history&amp;feed=atom&amp;title=Linux%2Fchmod_recursively</id>
	<title>Linux/chmod recursively - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.leese-family.de/index.php?action=history&amp;feed=atom&amp;title=Linux%2Fchmod_recursively"/>
	<link rel="alternate" type="text/html" href="https://wiki.leese-family.de/index.php?title=Linux/chmod_recursively&amp;action=history"/>
	<updated>2026-06-30T17:14:11Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in Ringo&#039;s Wiki</subtitle>
	<generator>MediaWiki 1.44.5</generator>
	<entry>
		<id>https://wiki.leese-family.de/index.php?title=Linux/chmod_recursively&amp;diff=11&amp;oldid=prev</id>
		<title>Ringo: Die Seite wurde neu angelegt: „Um Rekursiv die Rechte zu ändern kann man folgendes tun: * &#039;&#039;find /path/to/base/dir -type d -exec chmod 755 {} +&#039;&#039; * &#039;&#039;find /path/to/base/dir -type f -exec ch…“</title>
		<link rel="alternate" type="text/html" href="https://wiki.leese-family.de/index.php?title=Linux/chmod_recursively&amp;diff=11&amp;oldid=prev"/>
		<updated>2019-03-19T10:42:46Z</updated>

		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „Um Rekursiv die Rechte zu ändern kann man folgendes tun: * &amp;#039;&amp;#039;find /path/to/base/dir -type d -exec chmod 755 {} +&amp;#039;&amp;#039; * &amp;#039;&amp;#039;find /path/to/base/dir -type f -exec ch…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Um Rekursiv die Rechte zu ändern kann man folgendes tun:&lt;br /&gt;
* &amp;#039;&amp;#039;find /path/to/base/dir -type d -exec chmod 755 {} +&amp;#039;&amp;#039;&lt;br /&gt;
* &amp;#039;&amp;#039;find /path/to/base/dir -type f -exec chmod 644 {} +&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
oder&lt;br /&gt;
* &amp;#039;&amp;#039;chmod 755 $(find /path/to/base/dir -type d)&amp;#039;&amp;#039;&lt;br /&gt;
* &amp;#039;&amp;#039;chmod 644 $(find /path/to/base/dir -type f)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
oder um das chmod spawning zu reduzieren&lt;br /&gt;
* &amp;#039;&amp;#039;find /path/to/base/dir -type d -print0 | xargs -0 chmod 755&amp;#039;&amp;#039;&lt;br /&gt;
* &amp;#039;&amp;#039;find /path/to/base/dir -type f -print0 | xargs -0 chmod 644&amp;#039;&amp;#039;&lt;/div&gt;</summary>
		<author><name>Ringo</name></author>
	</entry>
</feed>