3 lines
164 B
Bash
Executable file
3 lines
164 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
find ~/Documents/Notes/ -type f -exec stat --printf '%Y\t%n\n' {} + | sort -rk 1 | head -n 3 | column -ts $'\t' -n 'Notes' -N date,filepath -J
|