diff options
author | des <des@FreeBSD.org> | 1998-04-21 22:02:01 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 1998-04-21 22:02:01 +0000 |
commit | 88ece5135ae0350444a49333e5f9119ee4cd28a9 (patch) | |
tree | 313376d3aae434f5bf31c1557832c5f36663816a /bin/ls/ls.h | |
parent | 7914b665ae42ef64075912c42a8457c8d4fadff2 (diff) | |
download | FreeBSD-src-88ece5135ae0350444a49333e5f9119ee4cd28a9.zip FreeBSD-src-88ece5135ae0350444a49333e5f9119ee4cd28a9.tar.gz |
Added -b option to display unprintables in octal.
PR: 1315
Diffstat (limited to 'bin/ls/ls.h')
-rw-r--r-- | bin/ls/ls.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ls/ls.h b/bin/ls/ls.h index 0a9b16d..1a64f7c 100644 --- a/bin/ls/ls.h +++ b/bin/ls/ls.h @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)ls.h 8.1 (Berkeley) 5/31/93 - * $Id: ls.h,v 1.6 1997/04/29 10:03:05 dfr Exp $ + * $Id: ls.h,v 1.7 1997/08/07 15:33:48 steve Exp $ */ #define NO_PRINT 1 @@ -46,6 +46,7 @@ extern int f_accesstime; /* use time of last access */ extern int f_flags; /* show flags associated with a file */ extern int f_inode; /* print inode */ extern int f_longform; /* long listing format */ +extern int f_octal; /* print unprintables in octal */ extern int f_sectime; /* print the real time for all files */ extern int f_size; /* list size in short listing */ extern int f_statustime; /* use time of last mode change */ |