📌  相关文章
📜  a) 编写一个 shell 脚本来列出一个目录中的所有目录文件. - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:49.236000             🧑  作者: Mango

代码示例2
# !/bin/bash
echo "enter directory name"
read dir
if[ -d $dir]
then
echo "list of files in the directory"
ls –l $dir|egrep ‘^d’
else
echo "enter proper directory name"
fi