在 Groovy 中执行 Unix cat 命令?

发布于 2024-11-07 20:08:05 字数 313 浏览 0 评论 0原文

你好,

我想执行类似 cat /path/to/file1 /path/to/file2 > 的操作来自 Groovy 程序的 /path/to/file3。 我尝试了“cat /path/to/file1 /path/to/file2 > /path/to/file3”.execute() 但这不起作用。

经过一番搜索后,我读到了有关 sh -c 的内容。所以我尝试了 “sh -c cat /path/to/file1 /path/to/file2 > /path/to/file3”.execute(),但这也不起作用。

您有什么建议吗?

Hallo

I would like to execute something like cat /path/to/file1 /path/to/file2 > /path/to/file3 from a Groovy program.
I tried "cat /path/to/file1 /path/to/file2 > /path/to/file3".execute() but this didn't work.

After some searching I read about sh -c. So I tried
"sh -c cat /path/to/file1 /path/to/file2 > /path/to/file3".execute(), but that didn't work either.

Do you have any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月光色 2024-11-14 20:08:05

我相信您需要使用 List .execute() 方法使其在 Shell 中运行,即:

[ 'sh', '-c', 'cat file1 file2 > file3' ].execute()

或者,您可以按照常规方式执行此操作

new File( 'file3' ).with { f ->
  [ 'file1', 'file2' ].each { f << new File( it ).asWritable() }
}

I believe you need to use the List.execute() method to get this running in the Shell, ie:

[ 'sh', '-c', 'cat file1 file2 > file3' ].execute()

Or, you could do it the groovy way

new File( 'file3' ).with { f ->
  [ 'file1', 'file2' ].each { f << new File( it ).asWritable() }
}
檐上三寸雪 2024-11-14 20:08:05

也许您需要提供可执行文件的完整路径? "/bin/sh -c '/bin/cat file1 file2 > file3'".execute()

Perhaps you need provide the full path to the executable? "/bin/sh -c '/bin/cat file1 file2 >file3'".execute()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文