我在特定目录中有这 4 个文件夹:
example.10 example.42 example.7 example.9
从 shell 终端,我想要这个大括号扩展
echo example.{1..9}*
只返回一个结果(无论是哪一个)而不是全部。
我如何通过大括号扩展来获得这个?
我在特定目录中有这 4 个文件夹:
example.10 example.42 example.7 example.9
从 shell 终端,我想要这个大括号扩展
echo example.{1..9}*
只返回一个结果(无论是哪一个)而不是全部。
我如何通过大括号扩展来获得这个?
将扩展保存为数组并打印一个数组项:
或使用
set
(注意:如果它们存在,这将覆盖位置参数):或使用
for
-loop 立即中断: