PKILL(1) - General Commands Manual # PKILL(1) - General Commands Manual
NAME # pgrep, pkill - find or signal processes by name
SYNOPSIS # pgrep [-flnoqvx] [-d delim] [-G gid] [-g pgrp] [-P ppid] [-s sid] [-T rtable] [-t tty] [-U uid] [-u euid] [pattern …]
pkill [-‌signal] [-fIlnoqvx] [-G gid] [-g pgrp] [-P ppid] [-s sid] [-T rtable] [-t tty] [-U uid] [-u euid] [pattern …]
DESCRIPTION # The pgrep command searches the process table on the running system and prints the process IDs of all processes that match the criteria given on the command line.
...
RDIST(1) - General Commands Manual # RDIST(1) - General Commands Manual
NAME # rdist - remote file distribution client program
SYNOPSIS # rdist [-DFnV] [-A num] [-a num] [-c mini_distfile] [-d var=value] [-f distfile] [-L remote_logopts] [-l local_logopts] [-M maxproc] [-m host] [-o distopts] [-P rsh-path] [-p rdistd-path] [-t timeout] [name …]
DESCRIPTION # rdist is a program to maintain identical copies of files over multiple hosts. It preserves the owner, group, mode, and mtime of files if possible and can update programs that are executing.
...
SDIFF(1) - General Commands Manual # SDIFF(1) - General Commands Manual
NAME # sdiff - side-by-side diff
SYNOPSIS # sdiff [-abdilstW] [-I regexp] [-o outfile] [-w width] file1 file2
DESCRIPTION # sdiff displays two files side by side, with any differences between the two highlighted as follows: new lines are marked with ‘>’; deleted lines are marked with ‘<’; and changed lines are marked with ‘|’.
sdiff can also be used to interactively merge two files, prompting at each set of differences.
...
SED(1) - General Commands Manual # SED(1) - General Commands Manual
NAME # sed - stream editor
SYNOPSIS # sed [-aEnru] [-i[extension]] command [file …]
sed [-aEnru] [-e command] [-f command_file] [-i[extension]] [file …]
DESCRIPTION # The sed utility reads the specified files, or the standard input if no files are specified, modifying the input as specified by a list of commands. The input is then written to the standard output.
...
SPLIT(1) - General Commands Manual # SPLIT(1) - General Commands Manual
NAME # split - split a file into pieces
SYNOPSIS # split [-a suffix_length]
[-b byte_count[k|m] | -l line_count | -p pattern] [file [name]]
DESCRIPTION # The split utility reads the given file, or standard input if no file is specified, and breaks it up into files of 1000 lines each. file itself is not altered.
The options are as follows:
...
VI(1) - General Commands Manual # VI(1) - General Commands Manual
NAME # ex, vi, view - text editors
SYNOPSIS # ex [-FRrSsv] [-c cmd] [-t tag] [-w size] [file …]
vi [-eFRrS] [-c cmd] [-t tag] [-w size] [file …]
view [-eFrS] [-c cmd] [-t tag] [-w size] [file …]
DESCRIPTION # ex is a line-oriented text editor; vi is a screen-oriented text editor. ex and vi are different interfaces to the same program, and it is possible to switch back and forth during an edit session.
...