9 lines
149 B
Markdown
9 lines
149 B
Markdown
|
|
# find
|
|
|
|
## Exapmle
|
|
```bash
|
|
# Follow symlink and print path with modifity date-time
|
|
find -L . -type f -printf '%TY-%Tm-%Td %TH:%TM:%TS %Tz %p\n'
|
|
```
|