diff --git a/docs/progs/find.md b/docs/progs/find.md new file mode 100644 index 0000000..5f59951 --- /dev/null +++ b/docs/progs/find.md @@ -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' +```