Update acp for final test
This commit is contained in:
parent
07f47c412f
commit
6149220ba8
4 changed files with 19 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
# Cerca utente
|
||||
|
||||
Un utente il cui username inizia per "abcd" dev'essere rimosso. Identifica il nome utente completo dell'utente e scrivi il risultato in `user.txt`.
|
||||
Un utente il cui username inizia per "abcd" dev'essere rimosso. Identifica il nome utente completo e scrivilo in `user.txt`.
|
||||
|
||||
Il checksum della soluzione è dato da
|
||||
|
||||
|
|
12
assets/permessi/README.md
Normal file
12
assets/permessi/README.md
Normal file
|
@ -0,0 +1,12 @@
|
|||
# Permessi
|
||||
|
||||
Assegna al file `foo/foo.txt` i permessi in modo tale che essi siano rappresentati dalla seguente stringa *file mode*:
|
||||
|
||||
`-rw-rw----`
|
||||
|
||||
Il checksum della soluzione è dato da
|
||||
|
||||
```bash
|
||||
ls -l | tail -1 | awk '{print $1}' | sha1sum
|
||||
```
|
||||
|
0
assets/permessi/foo/foo.txt
Normal file
0
assets/permessi/foo/foo.txt
Normal file
|
@ -2,3 +2,9 @@
|
|||
|
||||
Rimuovi da `foo` e da tutte le sue sotto cartelle i file con estensione `doc`.
|
||||
|
||||
Il checksum della soluzione è dato da
|
||||
|
||||
```bash
|
||||
tree $HOME/playground/rimuovi/foo | sha1sum
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue