Sfoglia il codice sorgente

Update README.md

Added the absolute path format to `find` command
pull/72/head
Sagar Kar 5 anni fa
committed by GitHub
parent
commit
6333086f2d
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 6 aggiunte e 0 eliminazioni
  1. +6
    -0
      README.md

+ 6
- 0
README.md Vedi File

@@ -1276,6 +1276,12 @@ find . -type f -exec stat --format '%Y :%y %n' "{}" \; | sort -nr | cut -d: -f2-
find . -not -path '*/\.git*' -type f -print0 | xargs -0 sed -i 's/foo/bar/g'
```

###### find with the absolute path shown and may be grep for something

```bash
find $(pwd) | grep -i myfile
```

___

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


Caricamento…
Annulla
Salva