侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

for判断是目录还是文件

2023-11-17 星期五 / 0 评论 / 0 点赞 / 60 阅读 / 281 字

#!/bin/bash#iterate through all the files in a directoryfor file in /home/test/*doif [ -d "$file" ]t

#!/bin/bash#iterate through all the files in a directoryfor file in /home/test/*do	if [ -d "$file" ]	then		echo "$file is a directory"	elif [ -f "$file" ]	then		echo "$file is a file"	fidone

 

广告 广告

评论区