shell腳本
#!/bin/bash
for item in `ls collection_dir`
do
col=${item%%.*}
echo $col
newman run collection_dir/${item} --reporters cli,html,junit \
--environment dev.postman_environment.json \
--reporter-html-export ${col}-result.html \
--reporter-junit-export ${col}-result.xml
done
其中${item%%.*}表示從右邊開始刪除,直到最后一個(gè).號(hào)渊季,比如demo.postman_collection.json罐寨,處理之后,變成demo