ksh 无法从有空格的位置进行 cp 吗?

发布于 2024-12-11 23:26:17 字数 323 浏览 0 评论 0原文

我正在尝试在 ksh 中执行以下操作,但不断收到 cp 命令的无法统计消息:

 JMX_ROOT=/bfs-build/build-info/mep_mainline-Linux.latest/core/mainline/automation

 SMOKE_JMX_LOCATION=$JMX_ROOT/"Smoke Set"/*.*

 cp $SMOKE_JMX_LOCATION /var/tmp/tempor

任何想法,都尝试在各种变量周围加上引号,但没有运气。认为它与“Smoke Set”中的空间有关,但不知道如何处理它。

非常感谢。

I am trying to do the following in ksh but keep getting cannot stat message for the cp command:

 JMX_ROOT=/bfs-build/build-info/mep_mainline-Linux.latest/core/mainline/automation

 SMOKE_JMX_LOCATION=$JMX_ROOT/"Smoke Set"/*.*

 cp $SMOKE_JMX_LOCATION /var/tmp/tempor

Any ideas, have tried putting quotes around the various variables but with no luck. Think its something to do with the spaces in "Smoke Set" but don't how how to work it.

Many thanks.

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

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

发布评论

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

评论(3

━╋う一瞬間旳綻放 2024-12-18 23:26:17
JMX_ROOT=/bfs-build/build-info/mep_mainline-Linux.latest/core/mainline/automation
SMOKE_JMX_LOCATION="$(echo $JMX_ROOT/"Smoke Set"/*.*)"
cp "$SMOKE_JMX_LOCATION" /var/tmp/tempor
JMX_ROOT=/bfs-build/build-info/mep_mainline-Linux.latest/core/mainline/automation
SMOKE_JMX_LOCATION="$(echo $JMX_ROOT/"Smoke Set"/*.*)"
cp "$SMOKE_JMX_LOCATION" /var/tmp/tempor
荭秂 2024-12-18 23:26:17
 JMX_ROOT=/bfs-build/build-info/mep_mainline-Linux.latest/core/mainline/automation

  SMOKE_JMX_LOCATION=$JMX_ROOT/"Smoke\ Set"/*.*

  cp $SMOKE_JMX_LOCATION /var/tmp/tempor

这能解决您的问题吗?在空格前添加 \

 JMX_ROOT=/bfs-build/build-info/mep_mainline-Linux.latest/core/mainline/automation

  SMOKE_JMX_LOCATION=$JMX_ROOT/"Smoke\ Set"/*.*

  cp $SMOKE_JMX_LOCATION /var/tmp/tempor

Does this solve your problem? Adding a \ before the space.

情话难免假 2024-12-18 23:26:17

尝试用反斜杠转义空格

SMOKE_JMX_LOCATION=$JMX_ROOT/Smoke\ Set/*.*

try escaping the space with a backslash

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