Files
2022-01-08 21:40:00 +01:00

7 lines
124 B
Bash

#!/bin/bash
filnamn="/etc/passwd"
if [ ! -w $filnamn ]; then
echo "Du har INTE skrivrättigheter till passwd-filen"
fi