# HG changeset patch # User Oleksandr Gavenko # Date 1284124476 -10800 # Node ID 0bb22c624d14e0f0b180135464575ed0f06d5f96 # Parent 0e46bc34075e23b16b7742d7e0e7dec3d4358678# Parent 4126096620107dbedef8f40bdf36494ca2cd38e0 Automated merge with file:///cygdrive/d/srv/hg-home/admin-doc diff -r 412609662010 -r 0bb22c624d14 emacs.rst --- a/emacs.rst Fri Sep 10 16:14:11 2010 +0300 +++ b/emacs.rst Fri Sep 10 16:14:36 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 412609662010 -r 0bb22c624d14 fs.rst --- a/fs.rst Fri Sep 10 16:14:11 2010 +0300 +++ b/fs.rst Fri Sep 10 16:14:36 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 412609662010 -r 0bb22c624d14 javascript.rst --- a/javascript.rst Fri Sep 10 16:14:11 2010 +0300 +++ b/javascript.rst Fri Sep 10 16:14:36 2010 +0300 @@ -1,10 +1,23 @@ -*- outline -*- -* Inline in HTML. +* HTML. + +