TXZ compression seems to be starting to take off in the Linux community. Slackware 13.0 is a Linux distribution that is activley using XZ compression. Slackware used to use gzip and the .tgz extension was used. Now that XZ compression is used the new Slackware packages use the .txz extension. In order to uncompress .TXZ [...]
cal
Display a calendar
Syntax
cal [-mjy] [[month] year]
Options:
-m Display monday as the first day of the week.
-j Display julian dates (days one-based, numbered from January 1).
[...]
awk or gawk (gnu awk)
Find and Replace text, database sort/validate/index
Syntax
awk <options> ‘Program’ Input-File1 Input-File2 …
awk -f PROGRAM-FILE <options> Input-File1 Input-File2 …
Key
-F FS
–field-separator FS
Use FS for the input field separator (the value of the [...]
cut
Divide a file into several parts (columns)
Writes to standard output selected parts of each line of each input file, or standard input if no files are given or for a file name of `-’.
Syntax
cut [OPTION]… [FILE]…
In the options below, BYTE-LIST, CHARACTER-LIST, and FIELD-LIST are one or more [...]
screen
Multiplex a physical terminal between several processes (typically interactive shells).
Syntax:
Start a screen session:
screen [ -options ] [ cmd [args] ]
Resume a detached screen session:
screen -r [[pid.]tty[.host]]
screen -r [...]
chroot
Run a command with a different root directory.
‘chroot’ runs a command with a specified root directory. On many systems, only the super-user can do this.
SYNTAX
chroot NEWROOT [COMMAND [ARGS]…]
chroot OPTION
Ordinarily, filenames are looked up starting at the root of the directory structure, i.e. [...]
du
Disk Usage – report the amount of disk space used by the specified files and for each subdirectory.
Syntax
du [options]… [file]…
With no arguments, `du’ reports the disk space for the current directory. Normally the disk space is printed in units of 1024 bytes, but this can be [...]
NAME
useradd – Create a new user or update default new user information
SYNOPSIS
useradd [-c comment] [-d home_dir]
[-e expire_date] [-f inactive_time]
[-g initial_group] [-G group[,...]]
[-m [-k skeleton_dir] | -M] [-n] [-o] [-p passwd] [-r]
[-s shell] [-u uid] login
useradd -D [-g default_group] [-b default_home]
[-e default_expire_date] [-f default_inactive]
[-s default_shell]
DESCRIPTION
Creating New Users
When invoked without the -D option, the useradd command [...]