我正在尝试在 Ubuntu 中通过使用./filename
命令行来执行或运行一个文件。当我尝试运行它时,我收到此错误:
Error: A mode argument is required
该文件没有文件扩展名。该文件名为oracle
,据我所知,该文件应该没有问题。
我该如何修复错误并运行该文件?
答案1
您尝试启动的文件至少需要 1 个参数。
正如你在这里看到的这里使用的方法是oracle callgraph <package>
并且软件中的代码有您的信息:
args := flag.Args()
+ if len(args) == 0 || args[0] == "" {
+ fmt.Fprint(os.Stderr, "Error: a mode argument is required.\n"+useHelp)
+ os.Exit(2)
如果参数数量为零或为空,程序将退出并显示该错误消息。
如果你的文件名是,filename
我预计它至少需要
oracle filename