如何使用期望脚本中的glob从特定目录中获取文件列表

时间:2016-05-11 12:57:41

标签: expect

我想要的是以hello开头的所有文件的列表,但必须只属于我正在搜索的特定目录。  我试过了

  

设置文件[glob -type f hello *]   但是我从hello获取所有目录中的文件。我希望那些文件以当前目录中的hello开头。

1 个答案:

答案 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