Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
问题:将 PATH 与文件名结合起来,这样我就可以轻松地获取许多文件。
我有两个文件 A 和 B。ls清楚地给出了它们的名称。
ls
我跑
pwd `ls`
我收到错误消息
too many arguments
我没有找到 pwd 的选项,它可以让我有多个论点。
如何将 pwd 的输出与文件名结合起来。
echo $PWD/*
除了 sigjuice 的答案,如果如您所说,您需要它来获取许多文件,只需使用
source ./*
它可能会消耗更少的 CPU 周期,因为 shell 不必为每个文件创建绝对路径名。