alfred workfow 使用注意事项
李二花 / 2021-10-10
分类: mac / 标签: mac, alfred / 字数: 107
关键词:mac
, alfred
如何调试 workflow
如何在 workflow 的 shell 脚本里使用参数
declare -a arr=("el a" "el b" "el c"); for i in "${arr[@]}"; do \
curl -X POST -H "Content-Type: application/json" -d \
'{"elem":"'"$i"'"}' "https://httpbin.org/post"; \
done
用 '"$i"'
来处理,但是如果遇到空格就会出问题,更好的办法是使用 function 解决.