print("World!")'-6ren">
gpt4 book ai didi

python - 将多行代码传递给 wsadmin.sh?

转载 作者:行者123 更新时间:2023-11-28 22:42:54 25 4
gpt4 key购买 nike

我想将几行代码传递给 WebSphere 配置文件。

这是我的尝试:

# ./wsadmin.sh -lang jython -c 'print("Hello")
> print("World!")'

这打印出一个响应:

WAS7209I: Connected to process"<my profile name>" on node <node name> using SOAP connector; The type of process is: UnManagedProcess
Hello

请注意,它似乎只是忽略了同一行代码。

当我在 Python 中尝试同样的事情时,它工作正常:

# python -c 'print("Hello")
> print("World!")

打印:

Hello
World!

我在 CentOS 7 上使用 WebSphere 8.5 版。

注意:在得到 Ram Vennam 的回答后,我在 super 用户上发布了一个不同倾向的相关问题:https://superuser.com/q/939746/240375 - 这是我真正得到答案的地方。

最佳答案

您可以使用分号:

./wsadmin.sh -lang jython -c 'print("Hello");print("World!")'

或者,可以使用 –f 选项和 wsadmin 将脚本文件作为输入。

$ wsadmin.sh –f your_script_file

关于python - 将多行代码传递给 wsadmin.sh?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31374202/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com