ScriptCs.Shebang对支持模块告诉ScriptCs在解析时忽略shebang行。如果没有这个模块,但是在.csx文件中有shebang,你会得到语法错误。该模块对于在*nix系统上使用编写脚本非常有用。

安装为*nix系统安装:使用以下内容在/usr/bin(或PATH中的任何其他目录)中创建文件:

脚本


#! /bin/sh

sciptcs_exe= < path>

mono ${scriptcs_exe} $*

scriptcs_sh


#! /bin/bash

scriptcs $1 -- ${ *: 1}

使这些文件可执行:


# In directory with scripts from above

chmod +x scriptcs