Ver a proveniência

updated find one-liners

- signed-off-by: trimstray <trimstray@gmail.com>
pull/1/merge
trimstray há 5 anos
ascendente
cometimento
1fde5d9ebf
1 ficheiros alterados com 6 adições e 0 eliminações
  1. +6
    -0
      README.md

+ 6
- 0
README.md Ver ficheiro

@@ -658,6 +658,12 @@ find . -depth -type d -empty -exec rmdir {} \;
find </path/to/dir> -xdev -samefile filename
```

###### Recursively find the latest modified files

```bash
find . -type f -exec stat --format '%Y :%y %n' "{}" \; | sort -nr | cut -d: -f2- | head
```

___

##### Tool: [top](https://en.wikipedia.org/wiki/Top_(software))


Carregando…
Cancelar
Guardar