Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试弄清楚如何打印所有可用的 grunt 任务的列表。使用 rake 将是:
$ rake -T
咕噜声的等价物是什么?例如
$ grunt -T
grunt --help列出可用的任务。
grunt --help
sh/bash 中列表的解决方法,以防您需要触发某些内容并且无法修改原始代码:
grunt -h --no-color | sed -n '/^Available tasks/,/^$/ {s/^ *\([^ ]\+\) [^ ]\+.*$/\1/p}'