我正在尝试找出如何打印所有可用的grunt任务的列表。用耙子将是:
$ rake -T
什么是咕the声?例如
$ grunt -T
- 康卡特
- 茉莉花
- 缩小
Answers:
grunt --help
列出可用的任务。
grunt multi:task0
,multi:task1
,等?
grunt --help
产生的所有杂音。你可能会想现在使用它作为一个权宜之计,铭记它已经超过一年,因为我第一次发布它仍然没有选项的呼噜声中隐藏任务等
sh / bash中列表的解决方法,以防您需要触发某些操作而无法修改原始代码:
grunt -h --no-color | sed -n '/^Available tasks/,/^$/ {s/^ *\([^ ]\+\) [^ ]\+.*$/\1/p}'