I remove some files using trash-cli
:
$ pwd
/tmp/test
$ sudo trash mfile
$
Then I look for where the deleted file is stored:
$ sudo ls /.Trash/0/ -la
total 16
drwx------ 4 root root 4096 May 19 16:52 .
drwx------ 3 root root 4096 May 19 16:52 ..
drwx------ 2 root root 4096 May 19 16:52 files
drwx------ 2 root root 4096 May 19 16:52 info
$ sudo ls /.Trash/0/* -la
ls: cannot access '/.Trash/0/*': No such file or directory
$ sudo ls /.Trash/0/files/ -la
total 12
drwx------ 2 root root 4096 May 19 16:52 .
drwx------ 4 root root 4096 May 19 16:52 ..
-rw-rw-r-- 1 t t 6 May 19 16:48 mfile
Why does filename expansion not work in the second command?
Thanks.