$ gdb my_program
(gdb) run my_argfiles
...segfault...
(gdb) backtrace
/usr/local/share/texmf/tex/latex/footmisc/). This location is
preferable to the main installation tree
(/usr/share/texmf-texlive/tex/latex/) as the files are more likely
to be preserved during upgrades..sty file by running latex on the appropriate source
files (e.g., latex footmisc.ins and latex footmisc.dtx).ls-R file in this source tree (e.g., cd
/usr/local/share/texmf/ ; sudo mktexlsr). Because
/usr/local/share/texmf/tex/ is not searched recursively by
kpathsea (cf. kpsepath tex), the ls-R file at the root directory
of this search path must be updated to make the system aware of the new
package.-newerXY and ! -newerXY:
Example: To find all files modified on the 7th of June, 2006:$ find . -type f -newermt 2007-06-07 ! -newermt 2007-06-08
To find all files accessed on the 29th of september, 2008:$ find . -type f -newerat 2008-09-29 ! -newerat 2008-09-30
Or, files which had their permission changed on the same day:$ find . -type f -newerct 2008-09-29 ! -newerct 2008-09-30
If you don't change permissions on the file, 'c' would normally correspond to the creation date, though.