不确认linux下的通道符用法,是否如下两个命令是等同的效果?
find /etc -size +20k -a -size -50k exec ls -lh {} \;
find /etc -size +20k -a -size -50k | ls -lh
答案是可以的,都是顺序执行