DricomDragon 5 年之前
父節點
當前提交
cf18cf8c02
共有 1 個文件被更改,包括 14 次插入0 次删除
  1. 14 0
      miaow.sh

+ 14 - 0
miaow.sh

@@ -0,0 +1,14 @@
+#!/bin/bash
+
+dir="/bin"
+files=`ls $dir`
+
+for f in $files
+do
+    echo "In $dir there is $f"
+
+    if [ $f == "cat" ]
+    then
+        echo "Miaow !"
+    fi
+done