Tag Archives: Linux Man Pages

SORT

SORT(1) User Commands SORT(1)

NAME
sort – sort lines of text files

SYNOPSIS
sort [OPTION]… [FILE]…

DESCRIPTION
Write sorted concatenation of all FILE(s) to standard output.

Mandatory arguments to long options are mandatory for short options
too. Ordering options:

-b, –ignore-leading-blanks
ignore leading blanks

-d, –dictionary-order
consider only blanks and alphanumeric characters

-f, –ignore-case
fold lower case to upper case characters

-g, –general-numeric-sort
compare according to general numerical value

-i, –ignore-nonprinting
consider only printable characters

-M, –month-sort
compare (unknown) < `JAN’ < … < `DEC’

-n, –numeric-sort
compare according to string numerical value

-R, –random-sort
sort by random hash of keys

–random-source=FILE
get random bytes from FILE (default /dev/urandom)

–sort=WORD
sort according to WORD: general-numeric -g, month -M, numeric
-n, random -R

-r, –reverse
reverse the result of comparisons

Other options:

-c, –check, –check=diagnose-first
check for sorted input; do not sort

-C, –check=quiet, –check=silent
like -c, but do not report first bad line

–compress-program=PROG
compress temporaries with PROG; decompress them with PROG -d

-k, –key=POS1[,POS2]
start a key at POS1, end it at POS2 (origin 1)

-m, –merge
merge already sorted files; do not sort

-o, –output=FILE
write result to FILE instead of standard output

-s, –stable
stabilize sort by disabling last-resort comparison

-S, –buffer-size=SIZE
use SIZE for main memory buffer

-t, –field-separator=SEP
use SEP instead of non-blank to blank transition

-T, –temporary-directory=DIR
use DIR for temporaries, not $TMPDIR or /tmp; multiple options
specify multiple directories

-u, –unique
with -c, check for strict ordering; without -c, output only the
first of an equal run

-z, –zero-terminated
end lines with 0 byte, not newline

–help display this help and exit

–version
output version information and exit

POS is F[.C][OPTS], where F is the field number and C the character
position in the field; both are origin 1. If neither -t nor -b is in
effect, characters in a field are counted from the beginning of the
preceding whitespace. OPTS is one or more single-letter ordering
options, which override global ordering options for that key. If no
key is given, use the entire line as the key.

SIZE may be followed by the following multiplicative suffixes: % 1% of
memory, b 1, K 1024 (default), and so on for M, G, T, P, E, Z, Y.

With no FILE, or when FILE is -, read standard input.

*** WARNING *** The locale specified by the environment affects sort
order. Set LC_ALL=C to get the traditional sort order that uses native
byte values.

AUTHOR
Written by Mike Haertel and Paul Eggert.

REPORTING BUGS
Report bugs to <bug-coreutils@gnu.org>.

COPYRIGHT
Copyright © 2008 Free Software Foundation, Inc. License GPLv3+: GNU
GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

SEE ALSO
The full documentation for sort is maintained as a Texinfo manual. If
the info and sort programs are properly installed at your site, the
command

info coreutils ‘sort invocation’

should give you access to the complete manual.

GNU coreutils 6.12 December 2008 SORT(1)

Technorati Tags: ,

MKDIRHIER

MKDIRHIER(1) MKDIRHIER(1)

NAME
mkdirhier – makes a directory hierarchy

SYNOPSIS
mkdirhier directory …

DESCRIPTION
The mkdirhier command creates the specified directories. Unlike mkdir
if any of the parent directories of the specified directory do not
exist, it creates them as well.

SEE ALSO
mkdir(1)

X Version 11 imake 1.0.2 MKDIRHIER(1)

Technorati Tags: ,

MODINFO

MODINFO(8) MODINFO(8)

NAME
modinfo – program to show information about a Linux Kernel module

SYNOPSIS
modinfo [ -0 ] [ -F field ] [ -k kernel ] [ modulename|filename ... ]

modinfo -V

modinfo -h

DESCRIPTION
modinfo extracts information from the Linux Kernel modules given on the
command line. If the module name is not a filename, then the /lib/mod-
ules/version directory is searched, as done by modprobe(8).

modinfo by default lists each attribute of the module in form fieldname
: value, for easy reading. The filename is listed the same way
(although it’s not really an attribute).

This version of modinfo can understand modules of any Linux Kernel
architecture.

OPTIONS
-V –version
Print the modinfo version. Note BACKWARDS COMPATIBILITY below:
you might be printing the version of modinfo.old.

-F –field
Only print this field value, one per line. This is most useful
for scripts. Field names are case-insenitive. Common fields
(which may not be in every module) include author, description,
license, param, depends, and alias. There are often multiple
param, alias and depends fields. The special field filename
lists the filename of the module.

-k kernel
Provide information about a kernel other than the running one.
This is particularly useful for distributions needing to extract
information from a newly installed (but not yet running) set of
kernel modules. For example, you wish to find which firmware
files are needed by various modules in a new kernel for which
you must make an initrd image prior to booting.

-0 –null
Use the ASCII zero character to separate field values, instead
of a new line. This is useful for scripts, since a new line can
theoretically appear inside a field.

-a -d -l -p -n
These are shortcuts for author, description, license. param and
filename respectively, to ease the transition from the old modu-
tils modinfo.

BACKWARDS COMPATIBILITY
This version of modinfo is for kernel modules 2.5.48 and above. If it
detects a kernel with support for old-style modules, it will attempt to
run modprobe.old in its place, so it is completely transparent to the
user.

Note that the output of this version of modinfo is simpler and more
regular than the older version: scripts attempting to use the default
output may get confused with complex fields.

You can force the new modinfo to always be used, by setting the
NEW_MODINFO environment variable.

COPYRIGHT
This manual page Copyright 2003, Rusty Russell, IBM Corporation.

SEE ALSO
modprobe(8), modinfo.old(8)

22 August 2008 MODINFO(8)

Technorati Tags: ,

MKFS

MKFS(8) MKFS(8)

NAME
mkfs – build a Linux file system

SYNOPSIS
mkfs [ -V ] [ -t fstype ] [ fs-options ] filesys [ blocks ]

DESCRIPTION
mkfs is used to build a Linux file system on a device, usually a hard
disk partition. filesys is either the device name (e.g. /dev/hda1,
/dev/sdb2). blocks is the number of blocks to be used for the file
system.

The exit code returned by mkfs is 0 on success and 1 on failure.

In actuality, mkfs is simply a front-end for the various file system
builders (mkfs.fstype) available under Linux. The file system-specific
builder is searched for in a number of directories like perhaps /sbin,
/sbin/fs, /sbin/fs.d, /etc/fs, /etc (the precise list is defined at
compile time but at least contains /sbin and /sbin/fs), and finally in
the directories listed in the PATH environment variable. Please see
the file system-specific builder manual pages for further details.

OPTIONS
-V Produce verbose output, including all file system-specific com-
mands that are executed. Specifying this option more than once
inhibits execution of any file system-specific commands. This
is really only useful for testing.

-t fstype
Specifies the type of file system to be built. If not speci-
fied, the default file system type (currently ext2) is used.

fs-options
File system-specific options to be passed to the real file sys-
tem builder. Although not guaranteed, the following options are
supported by most file system builders.

-c Check the device for bad blocks before building the file system.

-l filename
Read the bad blocks list from filename

-v Produce verbose output.

BUGS
All generic options must precede and not be combined with file system-
specific options. Some file system-specific programs do not support
the -v (verbose) option, nor return meaningful exit codes. Also, some
file system-specific programs do not automatically detect the device
size and require the blocks parameter to be specified.

AUTHORS
David Engel (david@ods.com)
Fred N. van Kempen (waltje@uwalt.nl.mugnet.org)
Ron Sommeling (sommel@sci.kun.nl)
The manual page was shamelessly adapted from Remy Card’s version for
the ext2 file system.

SEE ALSO
fs(5), badblocks(8), fsck(8), mkdosfs(8), mke2fs(8), mkfs.bfs(8),
mkfs.ext2(8), mkfs.ext3(8), mkfs.minix(8), mkfs.msdos(8), mkfs.vfat(8),
mkfs.xfs(8), mkfs.xiafs(8)

AVAILABILITY
The mkfs command is part of the util-linux-ng package and is available
from ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.

Version 1.9 Jun 1995 MKFS(8)

Technorati Tags: ,

MKNOD

MKNOD(1) User Commands MKNOD(1)

NAME
mknod – make block or character special files

SYNOPSIS
mknod [OPTION]… NAME TYPE [MAJOR MINOR]

DESCRIPTION
Create the special file NAME of the given TYPE.

-Z, –context=CTX
set the SELinux security context of NAME to CTX

Mandatory arguments to long options are mandatory for short options
too.

-m, –mode=MODE
set file permission bits to MODE, not a=rw – umask

–help display this help and exit

–version
output version information and exit

Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and
they must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x
or 0X, it is interpreted as hexadecimal; otherwise, if it begins with
0, as octal; otherwise, as decimal. TYPE may be:

b create a block (buffered) special file

c, u create a character (unbuffered) special file

p create a FIFO

NOTE: your shell may have its own version of mknod, which usually
supersedes the version described here. Please refer to your shell’s
documentation for details about the options it supports.

AUTHOR
Written by David MacKenzie.

REPORTING BUGS
Report bugs to <bug-coreutils@gnu.org>.

COPYRIGHT
Copyright © 2008 Free Software Foundation, Inc. License GPLv3+: GNU
GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

SEE ALSO
mknod(2)

The full documentation for mknod is maintained as a Texinfo manual. If
the info and mknod programs are properly installed at your site, the
command

info coreutils ‘mknod invocation’

should give you access to the complete manual.

GNU coreutils 6.12 May 2008 MKNOD(1)

Technorati Tags: ,