如何在 bash 中访问 ls 的输出?

发布于 2024-11-06 00:25:17 字数 138 浏览 0 评论 0原文

我编写了以下脚本,期望打印目录中的文件。但它只是将字符串“ls”扔到屏幕上。

问题是什么?

#!/bin/bash
for FILE in 'ls' 
do
   echo $FILE
done

I write the following script, expecting to print files in a directory. But it is just throwing the string "ls" on to screen.

What is the problem?

#!/bin/bash
for FILE in 'ls' 
do
   echo $FILE
done

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

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

发布评论

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

评论(1

与酒说心事 2024-11-13 00:25:17

错误的引号类型 - 您想要:

for FILE in `ls`

这些是反引号,而不是单引号。更好的是:

for FILE in $( ls )

您可能还想查看此网站

Wrong kind of quotes - you want:

for FILE in `ls`

Those are the backticks, not the single-quotes. Better still:

for FILE in $( ls )

You might also want to look at this site.

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