<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>风叶林 - 果子玩转shell编程</title>
    <link>https://hifyl.com/forum.php?mod=forumdisplay&amp;fid=147</link>
    <description>Latest 20 threads of 果子玩转shell编程</description>
    <copyright>Copyright(C) 风叶林</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Wed, 17 Jun 2026 00:33:29 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://hifyl.com/static/image/common/logo_88_31.gif</url>
      <title>风叶林</title>
      <link>https://hifyl.com/</link>
    </image>
    <item>
      <title>果子玩转shell编程之 第8课 命令执行的顺序和结果</title>
      <link>https://hifyl.com/forum.php?mod=viewthread&amp;tid=3335</link>
      <description><![CDATA[下载地址：http://pan.baidu.com/s/1otddm第8课 命令执行的顺序和结果
n 学习目标
&amp;#8226;  命令执行后的返回值。 
&amp;#8226;  命令执行的控制。
 &amp;#8226;  命令执行的组合。
 1. 命令的执行结果
 成功：返回0
失败：返回非0
 2. 命令执行控制
 2.1. 使用&amp;&amp;符号
 格式：命 ...]]></description>
      <category>果子玩转shell编程</category>
      <author>果子</author>
      <pubDate>Wed, 04 Dec 2013 13:17:26 +0000</pubDate>
    </item>
    <item>
      <title>果子玩转shell编程之 第7课 文件名匹配</title>
      <link>https://hifyl.com/forum.php?mod=viewthread&amp;tid=3267</link>
      <description><![CDATA[[bgcolor=#ffffff]下载地址： [/bgcolor]http://pan.baidu.com/s/1otddm第7课 文件名匹配n 学习目的[blockquote]
&amp;#8226;  匹配文件名中的任何字符串。
 &amp;#8226;  匹配文件名中的单个字符。
 &amp;#8226;  匹配文件名中的字母或数字字符。[/blockquote]
1. 匹配文件的符号[b ...]]></description>
      <category>果子玩转shell编程</category>
      <author>果子</author>
      <pubDate>Sun, 01 Dec 2013 11:52:02 +0000</pubDate>
    </item>
    <item>
      <title>果子玩转shell编程之 第6课 shell中的引用</title>
      <link>https://hifyl.com/forum.php?mod=viewthread&amp;tid=3239</link>
      <description><![CDATA[[bgcolor=#ffffff]下载地址： [/bgcolor]http://pan.baidu.com/s/1otddm如果觉得好，给果子顶个贴，说下你的看法和建议哦第6课 shell中的引用
 
1. 什么叫引用 
对shell脚本、程序、终端命令、变量、字符串等结果的反馈。
2. 引用的类型

 
3.   引用的必要性 
目的：防 ...]]></description>
      <category>果子玩转shell编程</category>
      <author>果子</author>
      <pubDate>Thu, 28 Nov 2013 13:11:31 +0000</pubDate>
    </item>
    <item>
      <title>果子玩转shell编程之 第5课 shell中的数学计算</title>
      <link>https://hifyl.com/forum.php?mod=viewthread&amp;tid=3201</link>
      <description><![CDATA[[bgcolor=#ffffff]下载地址： [/bgcolor]http://pan.baidu.com/s/1otddm如果觉得好，给果子顶个贴，说下你的看法和建议哦第5课 shell中的数学计算 
1. 计算方法
有三种格式可以进行数学计算。
1.1. 第一种??expr
格式：expr 操作数1  操作符  操作数2 
举例：
①　expr  ...]]></description>
      <category>果子玩转shell编程</category>
      <author>果子</author>
      <pubDate>Sun, 24 Nov 2013 13:54:55 +0000</pubDate>
    </item>
    <item>
      <title>果子玩转shell编程之 第4课 神奇的echo命令</title>
      <link>https://hifyl.com/forum.php?mod=viewthread&amp;tid=3194</link>
      <description><![CDATA[[bgcolor=#ffffff]下载地址： [/bgcolor]http://pan.baidu.com/s/1otddm第4课 神奇的echo命令
 
 
1. 显示文本或变量值[blockquote]
格式：echo [选项][字符，变量……]
选项：
-n 不换行输出  echo默认是输出一次换一行
-e 增强。启用转义字符解析
   \\a 响铃        ...]]></description>
      <category>果子玩转shell编程</category>
      <author>果子</author>
      <pubDate>Fri, 22 Nov 2013 14:19:17 +0000</pubDate>
    </item>
    <item>
      <title>果子玩转shell编程之 第3课 SHELL中的重定向和管道</title>
      <link>https://hifyl.com/forum.php?mod=viewthread&amp;tid=3190</link>
      <description><![CDATA[[bgcolor=#ffffff]       下载地址： [/bgcolor]http://pan.baidu.com/s/1otddm                             第3课 SHELL中的重定向和管道
1. 什么叫重定向
将输入或输出重新指定到别的位置。
2. 重定向输出
2.1. 命令执行数据流
文件/设备---- 标准输入 --&gt;命令 ---  ...]]></description>
      <category>果子玩转shell编程</category>
      <author>果子</author>
      <pubDate>Thu, 21 Nov 2013 14:28:58 +0000</pubDate>
    </item>
    <item>
      <title>果子玩转shell编程之 第2课 SHELL中的变量</title>
      <link>https://hifyl.com/forum.php?mod=viewthread&amp;tid=3184</link>
      <description><![CDATA[下载地址： http://pan.baidu.com/s/1otddm
第2课 SHELL中的变量
 
1. 变量的分类
1.1. 系统环境变量
系统本身所有，通常为大写字母
系统变量通过set或declare指令进行查看
1.2. UDV变量（user defined variable）
用户创建和维护，建议大写（为什么？）
原因：
避免冲 ...]]></description>
      <category>果子玩转shell编程</category>
      <author>果子</author>
      <pubDate>Wed, 20 Nov 2013 14:51:55 +0000</pubDate>
    </item>
    <item>
      <title>果子玩转Shell编程之 第1课 学习shell的意义</title>
      <link>https://hifyl.com/forum.php?mod=viewthread&amp;tid=3166</link>
      <description><![CDATA[打算开讲一套Linux下Shell编程
下载地址： http://pan.baidu.com/s/1otddm
果子玩转Linux下SHELL编程
第1 课 学习shell的意义
一、什么是shell?
Shell??是介于用户与系统之间，帮助用户与系统进行沟通的工具。


除了文字模式的 shell 外，GNOME、KDE这类图形界面也属于 ...]]></description>
      <category>果子玩转shell编程</category>
      <author>果子</author>
      <pubDate>Sun, 17 Nov 2013 05:40:31 +0000</pubDate>
    </item>
  </channel>
</rss>