91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何用Shell腳本統計當前目錄下目錄和文件的數量

發布時間:2021-09-28 15:38:18 來源:億速云 閱讀:384 作者:iii 欄目:開發技術

這篇文章主要講解了“如何用Shell腳本統計當前目錄下目錄和文件的數量”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何用Shell腳本統計當前目錄下目錄和文件的數量”吧!

下面用shell寫一個腳本,放置在當前目錄下,執行即可。

代碼如下:

 
#!/bin/bash
 
#腳本名稱 dir
#定義一個函數fun_directory
 
fun_directory() {     
  let "filenum=0"
  let "dirnum=0"
 
for i in $( ls )
do
   if [ -d $i ]
   then
      let dirnum+=1
   else
      let filenum+=1
   fi
done
 
echo "The number of directorys is $dirnum"
echo "The number of files is $filenum"
 
}
 
#調用函數
 
fun_directory

我們測試一下:

代碼如下:


[root@localhost scripts]# pwd
/root/scripts
[root@localhost scripts]# ll |sort
drwxr-xr-x 2 root root 4096 06-12 10:44 charpter8
drwxr-xr-x 2 root root 4096 06-13 12:34 aaa
-rw-r--r-- 1 root root  105 06-13 08:56 file1
-rw-r--r-- 1 root root  106 06-12 14:24 8-9
-rw-r--r-- 1 root root  121 06-12 09:36 jiu
-rw-r--r-- 1 root root  133 06-13 11:09 temp
-rw-r--r-- 1 root root  210 06-12 13:40 8-8
-rw-r--r-- 1 root root  222 06-12 11:51 8-6
-rw-r--r-- 1 root root  247 06-12 11:35 8-5
-rw-r--r-- 1 root root  273 06-12 13:13 8-7
-rw-r--r-- 1 root root  292 06-12 10:57 8-1
-rw-r--r-- 1 root root  309 06-12 14:51 8-11
-rw-r--r-- 1 root root  314 06-12 15:01 8-17
-rw-r--r-- 1 root root  317 06-13 12:10 test
-rw-r--r-- 1 root root   51 06-12 11:00 8-2
-rw-r--r-- 1 root root   53 06-13 08:51 file
-rw-r--r-- 1 root root   67 06-13 10:17 10-4
-rw-r--r-- 1 root root   78 06-13 10:09 test.out
-rwxr-xr-x 1 root root  103 06-12 11:06 8-3
-rwxr-xr-x 1 root root  124 06-13 10:02 10-32
-rwxr-xr-x 1 root root  304 06-13 12:47 dir
-rwxr-xr-x 1 root root  316 06-12 11:21 8-4
#執行腳本
[root@localhost scripts]# sh dir
The number of directorys is 2
The number of files is 20
[root@localhost scripts]#

可以看到,數據統計是準確的。

感謝各位的閱讀,以上就是“如何用Shell腳本統計當前目錄下目錄和文件的數量”的內容了,經過本文的學習后,相信大家對如何用Shell腳本統計當前目錄下目錄和文件的數量這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

晋江市| 平泉县| 郯城县| 手游| 花莲县| 宣威市| 南漳县| 崇仁县| 贺兰县| 三门峡市| 通城县| 时尚| 讷河市| 东莞市| 中西区| 鄂伦春自治旗| 遂平县| 黄浦区| 文昌市| 八宿县| 吴旗县| 卢龙县| 宁武县| 广水市| 如皋市| 五河县| 新民市| 鸡西市| 兴隆县| 南城县| 彩票| 瓮安县| 周宁县| 建昌县| 元谋县| 晋州市| 梅河口市| 油尖旺区| 合江县| 五河县| 韶山市|