我想找到这些文件:
当我输入此内容时:
find . -type f -regex "\bsmart\susers\d{2}\.csv\b"
它一无所获
答案 0 :(得分:1)
查看对问题的评论;)
find . -type f -regextype posix-extended -regex '.*\bsmart\s+users[0-9]{2}\.csv\b'
答案 1 :(得分:0)
尝试一下:
boost::function<void(const CloudConstPtr&)> f = [this](const CloudConstPtr& cloud) { cloud_cb(cloud); };
或:
find . -type f -regex ".*smart users..\.csv"
甚至:
find . -type f -regextype egrep -regex ".*smart.users[[:digit:]]{2}.csv"