假设我在主目录中
我正在尝试列出所有文件/etc
以显示所有sh
以inode
数字开头的文件
我尝试了以下方法:
sudo find /etc -name 'sh*'
# this works but without the inode
ls - '/etc' -i | grep 'sh*'
# this command gets the inode but includes all files that contain 'sh' not starts with
任何帮助表示赞赏
您可以使用
或(如果您不需要进入子目录)
甚至
来自
man ls
: