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 を使用して Quality Center の Test Lab にフォルダやテスト セットを作成する方法はありますか?
mkdir command=MODE で指定されたモードを使用して、名前とパスが EXPR のフォルダーを作成します。明確にするために、このモードは 8 進数で指定する必要があります。例
#!/usr/bin/perl -w $dirname ="/tmp/testdir"; mkdir $dirname, 0755;