2010-07-19 14:13:47 +02:00
|
|
|
Index: doc/coreutils.texi
|
|
|
|
===================================================================
|
2013-01-16 20:09:57 +01:00
|
|
|
--- doc/coreutils.texi.orig
|
|
|
|
+++ doc/coreutils.texi
|
2011-04-04 16:16:21 +02:00
|
|
|
@@ -66,7 +66,6 @@
|
2010-07-19 14:13:47 +02:00
|
|
|
* groups: (coreutils)groups invocation. Print group names a user is in.
|
|
|
|
* head: (coreutils)head invocation. Output the first part of files.
|
2011-04-04 16:16:21 +02:00
|
|
|
* hostid: (coreutils)hostid invocation. Print numeric host identifier.
|
2010-07-19 14:13:47 +02:00
|
|
|
-* hostname: (coreutils)hostname invocation. Print or set system name.
|
|
|
|
* id: (coreutils)id invocation. Print user identity.
|
|
|
|
* install: (coreutils)install invocation. Copy and change attributes.
|
|
|
|
* join: (coreutils)join invocation. Join lines on a common field.
|
- Update to 8.15:
** New programs
realpath: print resolved file names.
** Bug fixes
du --one-file-system (-x) would ignore any non-directory specified on
the command line. For example, "touch f; du -x f" would print nothing.
[bug introduced in coreutils-8.14]
du -x no longer counts root directories of other file systems.
[bug introduced in coreutils-5.1.0]
ls --color many-entry-directory was uninterruptible for too long
[bug introduced in coreutils-5.2.1]
ls's -k option no longer affects how ls -l outputs file sizes.
It now affects only the per-directory block counts written by -l,
and the sizes written by -s. This is for compatibility with BSD
and with POSIX 2008. Because -k is no longer equivalent to
--block-size=1KiB, a new long option --kibibyte stands for -k.
[bug introduced in coreutils-4.5.4]
ls -l would leak a little memory (security context string) for each
nonempty directory listed on the command line, when using SELinux.
[bug probably introduced in coreutils-6.10 with SELinux support]
split -n 1/2 FILE no longer fails when operating on a growing file, or
(on some systems) when operating on a non-regular file like /dev/zero.
It would report "/dev/zero: No such file or directory" even though
the file obviously exists. Same for -n l/2.
[bug introduced in coreutils-8.8, with the addition of the -n option]
stat -f now recognizes the FhGFS and PipeFS file system types.
tac no longer fails to handle two or more non-seekable inputs
[bug introduced in coreutils-5.3.0]
tail -f no longer tries to use inotify on GPFS or FhGFS file systems
[you might say this was introduced in coreutils-7.5, along with inotify
support, but the new magic numbers weren't in the usual places then.]
** Changes in behavior
df avoids long UUID-including file system names in the default listing.
With recent enough kernel/tools, these long names would be used, pushing
second and subsequent columns far to the right. Now, when a long name
refers to a symlink, and no file systems are specified, df prints the
usually-short referent instead.
tail -f now uses polling (not inotify) when any of its file arguments
resides on a file system of unknown type. In addition, for each such
argument, tail -f prints a warning with the FS type magic number and a
request to report it to the bug-reporting address.
- Bring german message catalog up to date.
- Include upstream fix for du.
- Include upstream patch fixing basename documentation.
OBS-URL: https://build.opensuse.org/package/show/Base:System/coreutils?expand=0&rev=144
2012-03-09 19:02:35 +01:00
|
|
|
@@ -198,7 +197,7 @@ Free Documentation License''.
|
|
|
|
* File name manipulation:: dirname basename pathchk mktemp realpath
|
2010-07-19 14:13:47 +02:00
|
|
|
* Working context:: pwd stty printenv tty
|
|
|
|
* User information:: id logname whoami groups users who
|
|
|
|
-* System context:: date arch nproc uname hostname hostid uptime
|
2011-04-04 16:16:21 +02:00
|
|
|
+* System context:: date arch nproc uname hostid uptime
|
2010-07-19 14:13:47 +02:00
|
|
|
* SELinux context:: chcon runcon
|
|
|
|
* Modified command invocation:: chroot env nice nohup stdbuf su timeout
|
|
|
|
* Process control:: kill
|
- Update to 8.15:
** New programs
realpath: print resolved file names.
** Bug fixes
du --one-file-system (-x) would ignore any non-directory specified on
the command line. For example, "touch f; du -x f" would print nothing.
[bug introduced in coreutils-8.14]
du -x no longer counts root directories of other file systems.
[bug introduced in coreutils-5.1.0]
ls --color many-entry-directory was uninterruptible for too long
[bug introduced in coreutils-5.2.1]
ls's -k option no longer affects how ls -l outputs file sizes.
It now affects only the per-directory block counts written by -l,
and the sizes written by -s. This is for compatibility with BSD
and with POSIX 2008. Because -k is no longer equivalent to
--block-size=1KiB, a new long option --kibibyte stands for -k.
[bug introduced in coreutils-4.5.4]
ls -l would leak a little memory (security context string) for each
nonempty directory listed on the command line, when using SELinux.
[bug probably introduced in coreutils-6.10 with SELinux support]
split -n 1/2 FILE no longer fails when operating on a growing file, or
(on some systems) when operating on a non-regular file like /dev/zero.
It would report "/dev/zero: No such file or directory" even though
the file obviously exists. Same for -n l/2.
[bug introduced in coreutils-8.8, with the addition of the -n option]
stat -f now recognizes the FhGFS and PipeFS file system types.
tac no longer fails to handle two or more non-seekable inputs
[bug introduced in coreutils-5.3.0]
tail -f no longer tries to use inotify on GPFS or FhGFS file systems
[you might say this was introduced in coreutils-7.5, along with inotify
support, but the new magic numbers weren't in the usual places then.]
** Changes in behavior
df avoids long UUID-including file system names in the default listing.
With recent enough kernel/tools, these long names would be used, pushing
second and subsequent columns far to the right. Now, when a long name
refers to a symlink, and no file systems are specified, df prints the
usually-short referent instead.
tail -f now uses polling (not inotify) when any of its file arguments
resides on a file system of unknown type. In addition, for each such
argument, tail -f prints a warning with the FS type magic number and a
request to report it to the bug-reporting address.
- Bring german message catalog up to date.
- Include upstream fix for du.
- Include upstream patch fixing basename documentation.
OBS-URL: https://build.opensuse.org/package/show/Base:System/coreutils?expand=0&rev=144
2012-03-09 19:02:35 +01:00
|
|
|
@@ -416,7 +415,6 @@ System context
|
2010-07-19 14:13:47 +02:00
|
|
|
* date invocation:: Print or set system date and time
|
|
|
|
* nproc invocation:: Print the number of processors
|
|
|
|
* uname invocation:: Print system information
|
|
|
|
-* hostname invocation:: Print or set system name
|
2011-04-04 16:16:21 +02:00
|
|
|
* hostid invocation:: Print numeric host identifier
|
2010-07-19 14:13:47 +02:00
|
|
|
* uptime invocation:: Print system uptime and load
|
|
|
|
|
2013-01-16 20:09:57 +01:00
|
|
|
@@ -14145,7 +14143,6 @@ information.
|
2010-07-19 14:13:47 +02:00
|
|
|
* arch invocation:: Print machine hardware name.
|
|
|
|
* nproc invocation:: Print the number of processors.
|
|
|
|
* uname invocation:: Print system information.
|
|
|
|
-* hostname invocation:: Print or set system name.
|
2011-04-04 16:16:21 +02:00
|
|
|
* hostid invocation:: Print numeric host identifier.
|
2010-07-19 14:13:47 +02:00
|
|
|
* uptime invocation:: Print system uptime and load.
|
|
|
|
@end menu
|
2013-01-16 20:09:57 +01:00
|
|
|
@@ -14932,15 +14929,6 @@ easily available, as is the case with Li
|
2011-04-04 16:16:21 +02:00
|
|
|
Print the machine hardware name (sometimes called the hardware class
|
|
|
|
or hardware type).
|
2010-07-19 14:13:47 +02:00
|
|
|
|
2011-04-04 16:16:21 +02:00
|
|
|
-@item -n
|
|
|
|
-@itemx --nodename
|
|
|
|
-@opindex -n
|
|
|
|
-@opindex --nodename
|
|
|
|
-@cindex hostname
|
|
|
|
-@cindex node name
|
|
|
|
-@cindex network node name
|
|
|
|
-Print the network node hostname.
|
|
|
|
-
|
|
|
|
@item -p
|
|
|
|
@itemx --processor
|
|
|
|
@opindex -p
|
2013-01-16 20:09:57 +01:00
|
|
|
@@ -14994,30 +14982,6 @@ Print the kernel version.
|
2010-07-19 14:13:47 +02:00
|
|
|
|
|
|
|
@exitstatus
|
|
|
|
|
|
|
|
-
|
|
|
|
-@node hostname invocation
|
|
|
|
-@section @command{hostname}: Print or set system name
|
|
|
|
-
|
|
|
|
-@pindex hostname
|
|
|
|
-@cindex setting the hostname
|
|
|
|
-@cindex printing the hostname
|
|
|
|
-@cindex system name, printing
|
|
|
|
-@cindex appropriate privileges
|
|
|
|
-
|
|
|
|
-With no arguments, @command{hostname} prints the name of the current host
|
|
|
|
-system. With one argument, it sets the current host name to the
|
|
|
|
-specified string. You must have appropriate privileges to set the host
|
|
|
|
-name. Synopsis:
|
|
|
|
-
|
|
|
|
-@example
|
|
|
|
-hostname [@var{name}]
|
|
|
|
-@end example
|
|
|
|
-
|
|
|
|
-The only options are @option{--help} and @option{--version}. @xref{Common
|
|
|
|
-options}.
|
|
|
|
-
|
|
|
|
-@exitstatus
|
|
|
|
-
|
|
|
|
|
2011-04-04 16:16:21 +02:00
|
|
|
@node hostid invocation
|
|
|
|
@section @command{hostid}: Print numeric host identifier
|
2010-07-19 14:13:47 +02:00
|
|
|
Index: man/Makefile.am
|
|
|
|
===================================================================
|
2013-01-16 20:09:57 +01:00
|
|
|
--- man/Makefile.am.orig
|
|
|
|
+++ man/Makefile.am
|
- Update to 8.15:
** New programs
realpath: print resolved file names.
** Bug fixes
du --one-file-system (-x) would ignore any non-directory specified on
the command line. For example, "touch f; du -x f" would print nothing.
[bug introduced in coreutils-8.14]
du -x no longer counts root directories of other file systems.
[bug introduced in coreutils-5.1.0]
ls --color many-entry-directory was uninterruptible for too long
[bug introduced in coreutils-5.2.1]
ls's -k option no longer affects how ls -l outputs file sizes.
It now affects only the per-directory block counts written by -l,
and the sizes written by -s. This is for compatibility with BSD
and with POSIX 2008. Because -k is no longer equivalent to
--block-size=1KiB, a new long option --kibibyte stands for -k.
[bug introduced in coreutils-4.5.4]
ls -l would leak a little memory (security context string) for each
nonempty directory listed on the command line, when using SELinux.
[bug probably introduced in coreutils-6.10 with SELinux support]
split -n 1/2 FILE no longer fails when operating on a growing file, or
(on some systems) when operating on a non-regular file like /dev/zero.
It would report "/dev/zero: No such file or directory" even though
the file obviously exists. Same for -n l/2.
[bug introduced in coreutils-8.8, with the addition of the -n option]
stat -f now recognizes the FhGFS and PipeFS file system types.
tac no longer fails to handle two or more non-seekable inputs
[bug introduced in coreutils-5.3.0]
tail -f no longer tries to use inotify on GPFS or FhGFS file systems
[you might say this was introduced in coreutils-7.5, along with inotify
support, but the new magic numbers weren't in the usual places then.]
** Changes in behavior
df avoids long UUID-including file system names in the default listing.
With recent enough kernel/tools, these long names would be used, pushing
second and subsequent columns far to the right. Now, when a long name
refers to a symlink, and no file systems are specified, df prints the
usually-short referent instead.
tail -f now uses polling (not inotify) when any of its file arguments
resides on a file system of unknown type. In addition, for each such
argument, tail -f prints a warning with the FS type magic number and a
request to report it to the bug-reporting address.
- Bring german message catalog up to date.
- Include upstream fix for du.
- Include upstream patch fixing basename documentation.
OBS-URL: https://build.opensuse.org/package/show/Base:System/coreutils?expand=0&rev=144
2012-03-09 19:02:35 +01:00
|
|
|
@@ -199,7 +199,7 @@ check-x-vs-1:
|
2010-07-19 14:13:47 +02:00
|
|
|
@PATH=../src$(PATH_SEPARATOR)$$PATH; export PATH; \
|
|
|
|
t=$@-t; \
|
|
|
|
(cd $(srcdir) && ls -1 *.x) | sed 's/\.x$$//' | $(ASSORT) > $$t;\
|
|
|
|
- (echo $(dist_man1_MANS) $(NO_INSTALL_PROGS_DEFAULT) \
|
|
|
|
+ (echo $(dist_man1_MANS) $(NO_INSTALL_PROGS_DEFAULT) hostid \
|
|
|
|
| tr -s ' ' '\n' | sed 's/\.1$$//') \
|
|
|
|
| $(ASSORT) -u | diff - $$t || { rm $$t; exit 1; }; \
|
|
|
|
rm $$t
|
|
|
|
Index: man/Makefile.in
|
|
|
|
===================================================================
|
2013-01-16 20:09:57 +01:00
|
|
|
--- man/Makefile.in.orig
|
|
|
|
+++ man/Makefile.in
|
|
|
|
@@ -2065,7 +2065,7 @@ check-x-vs-1:
|
2010-07-19 14:13:47 +02:00
|
|
|
@PATH=../src$(PATH_SEPARATOR)$$PATH; export PATH; \
|
|
|
|
t=$@-t; \
|
|
|
|
(cd $(srcdir) && ls -1 *.x) | sed 's/\.x$$//' | $(ASSORT) > $$t;\
|
|
|
|
- (echo $(dist_man1_MANS) $(NO_INSTALL_PROGS_DEFAULT) \
|
|
|
|
+ (echo $(dist_man1_MANS) $(NO_INSTALL_PROGS_DEFAULT) hostid \
|
|
|
|
| tr -s ' ' '\n' | sed 's/\.1$$//') \
|
|
|
|
| $(ASSORT) -u | diff - $$t || { rm $$t; exit 1; }; \
|
|
|
|
rm $$t
|