<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:media="http://search.yahoo.com/mrss/"
	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>遍历 - 四号程序员</title>
	<atom:link href="https://www.coder4.com/archives/tag/%E9%81%8D%E5%8E%86/feed" rel="self" type="application/rss+xml" />
	<link>https://www.coder4.com</link>
	<description>Keep It Simple and Stupid</description>
	<lastBuildDate>Wed, 22 Feb 2017 12:45:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>Shell编程中的数组定义、遍历</title>
		<link>https://www.coder4.com/archives/3853</link>
					<comments>https://www.coder4.com/archives/3853#comments</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Wed, 20 Mar 2013 07:17:01 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[数组]]></category>
		<category><![CDATA[遍历]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=3853</guid>

					<description><![CDATA[数组定义： arr=(1 2 3 4 5) # 注意是用空格分开，不是逗号！！ 数组定义法2： array array[0]="a" array[1]="b" array[2]="c" 获取数组的length（数组中有几个元素）： ${#array[@]} 遍历（For循环法）： for var in ${ arr[@] }; do echo $var done 遍历（带数组下标）： for i in "${!arr[@]}"; do print[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/3853/feed</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>[转]Linux下用C语言遍历文件夹</title>
		<link>https://www.coder4.com/archives/1347</link>
					<comments>https://www.coder4.com/archives/1347#respond</comments>
		
		<dc:creator><![CDATA[coder4]]></dc:creator>
		<pubDate>Wed, 19 Jan 2011 13:19:01 +0000</pubDate>
				<category><![CDATA[C && C++]]></category>
		<category><![CDATA[c语言]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[遍历]]></category>
		<guid isPermaLink="false">http://www.coder4.com/?p=1347</guid>

					<description><![CDATA[转自：http://www.linuxdiyf.com/viewarticle.php?id=63720 学习了LINUX下用C语言遍历文件夹，一些心得 struct dirent中的几个成员： d_type：4表示为目录，8表示为文件 d_reclen：16表示子目录或文件，24表示非子目录 d_name：目录或文件的名称 具体代码如下，仅供参考 #include &#60;stdio.h&#62; #include &#60;dirent.h&#62; #i[......] 继续阅读]]></description>
		
					<wfw:commentRss>https://www.coder4.com/archives/1347/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
