[gull] Lenovo offering Linux pre-installed

Daniel Cordey dc at pxcluster.com
Fri May 1 12:00:54 CEST 2020



On 01.05.20 09:42, Marc SCHAEFER wrote:

Marc, merci pour ta remarque au sujet des packages indésirables... à ne 
pas oublier en effet

>     rm -rf /$VAR

Je sais... c'est "glaçant", surtout si tu es root... :-)

Il y a peu de choses qui peuvent te prémunir contre ça. Il m'est arrivé 
en effet d'écrire des scripts avec :

path="/${VAR}"
cd "${path}"
rm -rf .

Stupide !!

Sans doute ceci est mieux :

path="/${VAR}"
test "${path}" = '/' && exit
rm -rf "${path}"

dc


More information about the gull mailing list