Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 bash 脚本的新手,试图创建一个 bash 脚本,其中:我多次运行 make 文件,然后将结果保存在不同的目录中,所以第一次运行代码时,我想将结果保存dir_1到第二次 todir_2等
dir_1
dir_2
我现在的脚本是:
#!/bin/bash for dir in ~/bin/*/ do dir=${dir%*/} echo ${dir##*/} starnvt done
我应该添加/更改什么?
谢谢!