The *nix documentation project is meant to provide online searchable documentation for Linux, FreeBSD, OpenBSD, NetBSD, HP-UX, Tru64 and other Unix like operating systems.
Currently hosting over 25000 manual pages,
over 200 Linux Howtos, over 100 FreeBSD tips and a friendly comunity forum where your questions will be answered.
|
Random man page:
wall(1m) -- write message to all users
|
|
Without arguments, the wall command reads a message from standard input until end-of-file. Then it sends this message to all currently logged-in users preceded by: Broadcast Message from ... If the -ggroupname option is specified, groupname option is specified, wall sends the message to all currently logged-in groupname members (as specified in /etc/group) preceded by: Broadcast Message from ... t... |
|
FreeBSD Tip Of the Day
|
View all tips
|
You can use aliases to decrease the amount of typing you need to do to get
commands you commonly use. Examples of fairly popular aliases include (in
bourne shell style, as in /bin/sh, bash, ksh, and zsh):
alias lf="ls -FA"
alias ll="ls -lA"
alias su="su -m"
In csh or tcsh, these would be
alias lf ls -FA
alias ll ls -lA
alias su su -m
To remove an alias, you can usually use 'unalias aliasname'. To list all
aliases, you can usually type just 'alias'.
|
|