<?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>xargs &#8211; SystemTechnics</title>
	<atom:link href="https://www.systemtechnics.de/tag/xargs/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.systemtechnics.de</link>
	<description>IT Consulting</description>
	<lastBuildDate>Tue, 10 Jul 2018 04:42:05 +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>xargs &#8211; SystemTechnics</title>
	<link>https://www.systemtechnics.de</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>OSX &#8211; nicht funktionierende logische Links finden</title>
		<link>https://www.systemtechnics.de/osx-nicht-funktionierende-logische-links-finden/</link>
		
		<dc:creator><![CDATA[knut]]></dc:creator>
		<pubDate>Tue, 10 Jul 2018 04:39:42 +0000</pubDate>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux/OSX]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[ln]]></category>
		<category><![CDATA[xargs]]></category>
		<guid isPermaLink="false">http://www.systemtechnics.de/?p=2556</guid>

					<description><![CDATA[Mit folgenden Befehl(en) lassen sich logische Links auf dem Mac (oder auch Linux) finden, die keine Funktion mehr haben: find [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Mit folgenden Befehl(en) lassen sich logische Links auf dem Mac (oder auch Linux) finden, die keine Funktion mehr haben:</p>
<pre><code>find -L /PFAD/ -type -l </code></pre>
<p>Wer diese gleich löschen möchte kann dies gefundenen Links an xargs übergeben:</p>
<pre><code>find -L /PFAD/ -type -l | xargs rm</code></pre>
<p><img fetchpriority="high" decoding="async" src="/wp-content/uploads/find-links-1024x718.png" alt="" width="1024" height="718" class="aligncenter size-large wp-image-2559" srcset="https://www.systemtechnics.de/wp-content/uploads/find-links-1024x718.png 1024w, https://www.systemtechnics.de/wp-content/uploads/find-links-300x210.png 300w, https://www.systemtechnics.de/wp-content/uploads/find-links-768x538.png 768w, https://www.systemtechnics.de/wp-content/uploads/find-links.png 1364w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>HTTP Status Code von Domains in Bash ermitteln</title>
		<link>https://www.systemtechnics.de/http-status-code-in-bash-ermitteln/</link>
		
		<dc:creator><![CDATA[knut]]></dc:creator>
		<pubDate>Fri, 14 Oct 2016 13:36:55 +0000</pubDate>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux/OSX]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[xargs]]></category>
		<guid isPermaLink="false">http://www.systemtechnics.de/?p=1763</guid>

					<description><![CDATA[Eine ganze Liste von Domains überprüfen möchte und welchen Status-Code diese liefern, der kann ganz einfach folgenden Einzeiler verwenden cat [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Eine ganze Liste von Domains überprüfen möchte und welchen Status-Code diese liefern, der kann ganz einfach folgenden Einzeiler verwenden</p>
<p><span id="more-1763"></span></p>
<pre><code>cat domainliste.txt | xargs -n1 -P8 -I'!' curl -I -s -o /dev/null -w '%{url_effective} %{http_code}\n' '!'</code></pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
