标签: linux shell
如何在linux shell脚本上编写一个列出目录内容和子目录的脚本?
找〜/ Desktop / Sample / -type f - 像那样
答案 0 :(得分:0)
此行将创建您的脚本并赋予其执行权限:
echo -e '#!/bin/bash \nfind ~/Desktop/Sample/ -type f' > your_script.sh && chmod +x your_script.sh