使用NPX命令执行Shell脚本shebang /解释器

时间:2019-04-20 20:58:15

标签: node.js shell npm coffeescript npx

我想使用confirmDismiss: (DismissDirection direction) async { final bool res = await showDialog( context: context, builder: (BuildContext context) { return AlertDialog( title: const Text("Confirm"), content: const Text("Are you sure you wish to delete this item?"), actions: <Widget>[ FlatButton(onPressed: () => Navigator.of(context).pop(true), child: const Text("DELETE") ), FlatButton( onPressed: () => Navigator.of(context).pop(false), child: const Text("CANCEL"),) ], ); }); }, 可执行文件运行命令行脚本,但是我想通过coffee调用该可执行文件。

npx之类的东西不起作用,因为通过#!/usr/bin/env npx coffee仅支持一个参数。

那么,有没有办法通过env运行npx可执行文件?

0 个答案:

没有答案