find the files thats being written
Aug 7, 2020
How do you find which file recursively is the most recent modified in a folder?
#BEGIN_SRC bash find $DIR -type f -printf “%T@ %p\n” | sort -n | cut -d’ ' -f 2- | tail -n 1 #END_SRC from here
#BEGIN_SRC bash find $DIR -type f -printf “%T@ %p\n” | sort -n | cut -d’ ' -f 2- | tail -n 1 #END_SRC from here