How to find a file and print the name, path and date and time it was last accessed...
Change filename to be the file you want, with optional wildcards. (Use -iname for case insensitive search).
find . -name-printf "%p %AD %AH:%AM\n"
This site is now archived. My new coding posts are here http://justinhj.github.io
find . -name-printf "%p %AD %AH:%AM\n"
echo Batch file path is %~dp0
dir %~dp0
(defun copy-char-above()
"copy the character above point into the buffer"
(interactive)
(let (c)
(save-excursion
(previous-line)
(setq c (char-after)))
(insert (char-to-string c))))
(global-set-key [f6] 'copy-char-above)