Comment on Managing Work-In-Progress Folders with “ls -ltr”parentComments−q_revert14y /tmp/ $ mkdir -p test1/test2/test3 /tmp/ $ touch test1/test2/test3/test4 /tmp/ $ ls -ltr test1/**/*(.) -rw-r--r-- 1 usr grp 0 Aug 9 11:11 test1/test2/test3/test4 /tmp/ $ touch test1/test2/test3/test\ with\ spaces /tmp/ $ ls -ltr test1/**/*(.) -rw-r--r-- 1 usr grp 0 Aug 9 11:11 test1/test2/test3/test4 -rw-r--r-- 1 usr grp 0 Aug 9 11:12 test1/test2/test3/test with spaces
Comments