标签: bash file wildcard
我正在编写一个脚本,将物品移到gnome / budgie / xfce的垃圾箱中,因此我不会意外地“ rm”加载我本来希望没有的东西。但是,使用通配符传递路径无法正常工作。
代码: ~ trash path/to/files/*
~ trash path/to/files/*
我希望$ 1是: path/to/files/*
path/to/files/*
但是我得到: /path/to/files/first_file
/path/to/files/first_file
如何获取实际传递给脚本的字符串?