This commit is contained in:
Super User
2024-06-19 19:09:34 +03:00
parent c1f28f3ba9
commit 0057397e6a

8
docs/progs/find.md Normal file
View File

@@ -0,0 +1,8 @@
# 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'
```