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.
有没有办法使用 Perl 在质量中心的测试实验室中创建文件夹和/或测试集?
mkdir command=使用 MODE 指定的模式创建一个名称和路径为 EXPR 的文件夹,为清楚起见,应以八进制值提供。例子
#!/usr/bin/perl -w $dirname ="/tmp/testdir"; mkdir $dirname, 0755;