Dosya Bulup Silme ( Find and Delete)
Belli bir şablona uyan dosyaları bulup silen shell komutu:
find . -name [SABLON] -exec rm -f {} \;
Örneğin “bck” uzantılı dodyaları bulup siler:
find . -name *.bck -exec rm -f {} \;
Belli bir şablona uyan dosyaları bulup silen shell komutu:
find . -name [SABLON] -exec rm -f {} \;
Örneğin “bck” uzantılı dodyaları bulup siler:
find . -name *.bck -exec rm -f {} \;
Recent Comments