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%%.*}表示从右边开始删除,直到最后一个.号,比如demo.postman_collection.json,处理之后,变成demo
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。