[root@localhost ~]# find /etc -size +20k -a -size -50k -exec ls -l {}\;
find: missing argument to `-exec'
[root@localhost ~]#
find: missing argument to `-exec' 这句错误提示是什么意思呢?
-exec 后面的{} 与\之间要添加空格
find /etc -size +20k -a -size -50k -exec ls -l {} \;
{}和\之间加一个空格就好了哈哈