在Linux中使用display命令显示所有.png图像

时间:2019-03-19 17:46:29

标签: linux terminal display

要显示文件夹中的图像,请使用display image.png

如果我想在子文件夹中打开所有.png文件,我尝试显示* .png,但没有用。

如何在交互式shell中完成此操作?

谢谢

1 个答案:

答案 0 :(得分:0)

尝试一下:

downloadDocument = (filename: string): void => {
    this._service.downloadDocument(filename).subscribe((res) => {
      saveAs(res.data, 'filename');
    });
  };

它应该遍历子目录中的所有文件并显示所有* .png文件,并将每个文件作为后台进程启动。