5
Bash查找命令详细输出
有没有办法告诉bash find命令输出它在做什么(详细模式)? 例如对于命令: find /media/1Tb/videos -maxdepth 1 -type d -mtime +7 -exec rm -rf {} \;输出: Found /media/1Tb/videos/102, executing rm -rf /media/1Tb/videos/102 ...
Bash是Bourne Again SHell,它是经典Unix sh(shell)的继承者。