会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
参婵
盖士人读书,第一要有志,第二要有识,第三要有恒。
博客园
首页
新随笔
联系
订阅
管理
2019年11月21日
初学shell
摘要: 遍历某一目录下的所有文件或文档,并输出 #!/bin/bash for file in /home/linux/* do if [ -d "$file" ] then echo "$file is directory" elif [ -f "$file" ] then echo "$file is
阅读全文
posted @ 2019-11-21 22:28 参婵
阅读(117)
评论(0)
推荐(0)
编辑