From: Jim Meyering Date: Fri, 24 Jan 2003 14:58:38 +0000 (+0000) Subject: Tweak mysql output to match input :-) From Jan. X-Git-Tag: v4.5.5~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b998bbef74f40ba203a62419b07b538f9966d9de;p=thirdparty%2Fcoreutils.git Tweak mysql output to match input :-) From Jan. --- diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 7e7271e208..b7184fabec 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -11911,14 +11911,14 @@ $ mysql -e 'create table home \ $ mysqlimport --fields-terminated-by=, test home.cs @print{} test.home: Records: 4 Deleted: 0 Skipped: 0 Warnings: 0 $ mysql -e 'select * from home' test -@print{} +------+------+------+------+---------------------+ -@print{} | d | u | g | o | name | -@print{} +------+------+------+------+---------------------+ -@print{} | d | rwx | r-x | r-x | /home/fred/CVS | -@print{} | d | rwx | --- | --- | /home/fred/Mail | -@print{} | d | rwx | r-x | r-x | /home/fred/lilypond | -@print{} | d | rwx | r-x | r-x | /home/fred/savannah | -@print{} +------+------+------+------+---------------------+ +@print{} +------+------+------+------+----------+ +@print{} | d | u | g | o | name | +@print{} +------+------+------+------+----------+ +@print{} | d | rwx | r-x | r-x | CVS | +@print{} | d | rwx | --- | --- | Mail | +@print{} | d | rwx | r-x | r-x | lilypond | +@print{} | d | rwx | r-x | r-x | savannah | +@print{} +------+------+------+------+----------+ @end example But beware of assumptions.