Oikeuksien asetus scriptin avulla

Lue ensin https://www.linux.fi/wiki/Tiedoston_oikeudet

Jos haluaa asettaa oikeudet suurelle määrälle tiedostoja ja/tai hakemistoille, niin oikeudet voi asettaa scriptin avulla tai päätteen kautta.

Tiedosto: Avaa pääte kohdehakemistossa ja suorita

find . -type f -print -exec chmod -R 600 {} \;

print näyttää kaikki tiedostot ja find . -type f -executable näyttää suorittavat tiedostot.

Seuraava scriti vaatii paketit xterm ja zenity toimiakseen.

#! /bin/sh

cd $HOME/Videot
xterm -e find . -type f -print -exec chmod -R 600 {} \;
cd $HOME/Kuvat
xterm -e find . -type f -print -exec chmod -R 600 {} \;
cd $HOME/Desktop
xterm -e find . -type f -print -exec chmod -R 600 {} \;
cd $HOME/Lataukset
xterm -e find . -type f -print -exec chmod -R 600 {} \;
cd $HOME/Musiikki
xterm -e find . -type f -print -exec chmod -R 600 {} \;
cd $HOME/.mozilla
xterm -e find . -type f -print -exec chmod -R 600 {} \;
zenity --org --text "Oikeudet asetettu!"

PS! -type f asettaa tiedostoille ja -type d hakemistoille!

Lue myös: https://puolanka.org/goto/to-check-executables/