我想要的是以hello开头的所有文件的列表,但必须只属于我正在搜索的特定目录。 我试过了
设置文件[glob -type f hello *] 但是我从hello获取所有目录中的文件。我希望那些文件以当前目录中的hello开头。
答案 0 :(得分:1)
我看不到你在看什么:
$ touch helloworld
$ mkdir hello_dir
$ touch hello_dir/file_in_subdir
$ ls -1R .
.:
hello_dir/
helloworld
./hello_dir:
file_in_subdir
$ expect -v
expect version 5.45
$ expect
expect1.1> glob -type f hello*
helloworld