#TodayILearned that to find then sort by ‘lastwritetime’ in bash, you can do this:
find . -name ‘*.yml’ -printf “%T@ %Tc %p\n” | sort -n
Via @Try_It_Online at superuser.com/questions…
#TodayILearned that to find then sort by ‘lastwritetime’ in bash, you can do this:
find . -name ‘*.yml’ -printf “%T@ %Tc %p\n” | sort -n
Via @Try_It_Online at superuser.com/questions…