remove UTF8 crap

This commit is contained in:
Malin Freeborn 2024-12-05 17:12:10 +01:00
parent c7eb11f603
commit 83c40a44a1
Signed by: andonome
GPG Key ID: 52295D2377F4D70F

View File

@ -14,7 +14,7 @@ Check the permissions on your `ssh` directory:
```bash
$ ls -d ~/.ssh
drwxr-x--- - ghost 3 Dec 12:55 󰢬 /home/ghost/.ssh
drwxr-x--- - ghost 3 Dec 12:55 /home/ghost/.ssh
```
This is wrong, because anyone in your `~` can see you `ssh` configuration files.
@ -22,7 +22,7 @@ This is wrong, because anyone in your `~` can see you `ssh` configuration files.
```bash
$ chmod -R 600 ~/.ssh
$ ls -d ~/.ssh
drw------- - ghost 3 Dec 12:55 󰢬 /home/ghost/.ssh
drw------- - ghost 3 Dec 12:55 /home/ghost/.ssh
```
This is also wrong - entering a directory is the same as executing it.