我正在为Windows创建一个电子应用程序,并使用一些Windows应用程序依赖项
其他依赖项需要文件路径作为变量。实施例
dependency.exe --config /path/to/config/file.conf
我希望直接用内容
例如
dependency.exe --config $("configuration content")
原因?我不希望为用户创建配置文件以查看并将其保留为闭源
答案 0 :(得分:0)
我假设dependency.exe
是您的应用。您可以从标准输入读取它,然后使用type
命令获取配置文件内容:
type file.conf | dependency.exe