我刚刚从 Windows 切换到 ubuntu。我有一个批处理文件,用于清除某些下载中不需要的文件。然后清理空文件夹。以下操作在 Linux 中的对应操作是什么。
for /R "Z:\Downloads\torrent\DONE" %%G in (*.txt *.jpg *.nfo *.exe *sample* *.sample* *-sample* ) do DEL "%%G"
for /f "delims=" %%d in ('dir /s /b /ad ^| sort /r') do rd "%%d"
我理想情况下想为其制作一个 .sh 或 .py。