.sh 文件 linux 上的 Jmeter Creating/Editing

Jmeter Creating/Editing on .sh file linux

谁能帮我模拟这个场景,例如我将 create/update .sh 文件。尝试使用“SSH 命令采样器”并使用此命令“vi testralph123.txt”,但它不起作用。如果 Linux 命令像“ls”一样检索,SSH 命令通常会起作用。非常感谢您的回复。非常感谢您。

预期结果:调用示例后,它将 generate/update .sh 文件。

截图:

Man,vi 命令在交互式 shell 中打开编辑器,SSH 命令采样器不支持它,我建议在文件中使用类似 echo command instead with stream redirection 的东西。

示例命令为:

echo "hello from JMeter" > testralph123.txt

它将在您的用户 home folder 或您通过 SSH 登录系统时到达的任何地方创建 testralph123.txt 文件。

更多信息:How to Run External Commands and Programs Locally and Remotely from JMeter