Alfred Workflow 多个参数

  1. 在 Workflow 编辑界面中选择 Actions → Run Scripts
  2. 在弹出的界面中的 Language 中选择 /bin/bash,并不能选择 /bin/zsh
  3. 使用如下格式代码:
1
2
3
4
5
sentence="$1"
for word in $sentence
do
#echo "$word"
done

其中,$word 为以空格分割的参数