# HG changeset patch # User Oleksandr Gavenko # Date 1284014199 -10800 # Node ID 0e46bc34075e23b16b7742d7e0e7dec3d4358678 # Parent 1cc5709f153d7adc83368875f1f9f6b0a36bf1f5# Parent 9b596be4c77b55115a6ee685b7e8625e640c3eea merged diff -r 9b596be4c77b -r 0e46bc34075e emacs.rst --- a/emacs.rst Tue Sep 07 15:21:38 2010 +0300 +++ b/emacs.rst Thu Sep 09 09:36:39 2010 +0300 @@ -255,3 +255,6 @@ semantic-lex-c-preprocessor-symbol-file List of C/C++ files that contain preprocessor macros for the C lexer. +* Debugging C code. + + -*- mode: grep; mode: auto-revert-tail; default-directory: "~/devel/proj" -*- diff -r 9b596be4c77b -r 0e46bc34075e fs.rst --- a/fs.rst Tue Sep 07 15:21:38 2010 +0300 +++ b/fs.rst Thu Sep 09 09:36:39 2010 +0300 @@ -14,6 +14,25 @@ $ convmv --nosmart -f cp-1251 -t utf-8 -r $dir +* How get file time attributes. + +POSIX define 3 file time attributes: atime (access time, only a few OS/fs update +this parameter), ctime (attribute/inode modification time), mtime (modification +time). + +To get time you can use 'ls' command but it print time in locale dependent +irregular form: + + $ ls -l file.txt # last file modification + $ ls -lc file.txt # last file status modification + $ ls -lu file.txt # last access + +GNU coreutils provide more robust 'stst' utility: + + $ stat -c %Y file.txt # last file modification + $ stat -c %Z file.txt # last file status modification + $ stat -c %X file.txt # last access + * File names. ** POSIX. diff -r 9b596be4c77b -r 0e46bc34075e javascript.rst --- a/javascript.rst Tue Sep 07 15:21:38 2010 +0300 +++ b/javascript.rst Thu Sep 09 09:36:39 2010 +0300 @@ -1,10 +1,23 @@ -*- outline -*- -* Inline in HTML. +* HTML. + +