![]()
Linux, Unix, /etc/$ To set up this Linux system, do I really have to type long,
cryptic, frequently inconsistent and undocumented commands with
occasional long strings of hex digits?
# Yeah. You got a problem with that?
|
Sponsored links (requires javascript):
#!/bin/ksh
#lookup.http_result_code: what does the given 3-digit http result code mean?
. $HOME/lib/stdlib.sh
file=library/computers/internet/www/http/http_result_codes
case $1 in
"") cat $file ;;
*) grep $1 $file ;;
esac