суббота, 9 января 2010 г.

Шпаргалка для линукса

This is a linux command line reference for common operations.

Examples marked with • are valid/safe to paste without modification into a terminal, so

you may want to keep a terminal window open while reading this so you can cut & paste.

All these commands have been tested both on Fedora and Ubuntu.



CommandDescription
apropos whatisShow commands pertinent to string. See also threadsafe
man -t man | ps2pdf - > man.pdfmake a pdf of a manual page
which commandShow full path name of command
time commandSee how long a command takes
time catStart stopwatch. Ctrl-d to stop. See also sw
nice infoRun a low priority command (The "info" reader in this case)
renice 19 -p $$Make shell (script) low priority. Use for non interactive tasks
dir navigation
cd -Go to previous directory
cdGo to $HOME directory
(cd dir && command)Go to dir, execute command and return to current dir
pushd .Put current dir on stack so you can popd back to it
alias l='ls -l --color=auto'quick dir listing
ls -lrtList files by date. See also newest and find_mm_yyyy
ls /usr/bin | pr -T9 -W$COLUMNSPrint in 9 columns to width of terminal
find -name '*.[ch]' | xargs grep -E 'expr'Search 'expr' in this dir and below. See also findrepo
find -type f -print0 | xargs -r0 grep -F 'example'Search all regular files for 'example' in this dir and below
find -maxdepth 1 -type f | xargs grep -F 'example'Search all regular files for 'example' in this dir
find -maxdepth 1 -type d | while read dir; do echo $dir; echo cmd2; doneProcess each item with multiple commands (in while loop)
find -type f ! -perm -444Find files not readable by all (useful for web site)
find -type d ! -perm -111Find dirs not accessible by all (useful for web site)
locate -r 'file[^/]*\.txt'Search cached index for names. This re is like glob *file*.txt
look referenceQuickly search (sorted) dictionary for prefix
grep --color reference /usr/share/dict/wordsHighlight occurances of regular expression in dictionary
archives and compression
gpg -c fileEncrypt file
gpg file.gpgDecrypt file
tar -c dir/ | bzip2 > dir.tar.bz2Make compressed archive of dir/
bzip2 -dc dir.tar.bz2 | tar -xExtract archive (use gzip instead of bzip2 for tar.gz files)
tar -c dir/ | gzip | gpg -c | ssh user@remote 'dd of=dir.tar.gz.gpg'Make encrypted archive of dir/ on remote machine
find dir/ -name '*.txt' | tar -c --files-from=- | bzip2 > dir_txt.tar.bz2Make archive of subset of dir/ and below
find dir/ -name '*.txt' | xargs cp -a --target-directory=dir_txt/ --parentsMake copy of subset of dir/ and below
( tar -c /dir/to/copy ) | ( cd /where/to/ && tar -x -p )Copy (with permissions) copy/ dir to /where/to/ dir
( cd /dir/to/copy && tar -c . ) | ( cd /where/to/ && tar -x -p )Copy (with permissions) contents of copy/ dir to /where/to/
( tar -c /dir/to/copy ) | ssh -C user@remote 'cd /where/to/ && tar -x -p'Copy (with permissions) copy/ dir to remote:/where/to/ dir
dd bs=1M if=/dev/sda | gzip | ssh user@remote 'dd of=sda.gz'Backup harddisk to remote machine
rsync (Network efficient file copier: Use the --dry-run option for testing)
rsync -P rsync://rsync.server.com/path/to/file fileOnly get diffs. Do multiple times for troublesome downloads
rsync --bwlimit=1000 fromfile tofileLocally copy with rate limit. It's like nice for I/O
rsync -az -e ssh --delete ~/public_html/ remote.com:'~/public_html'Mirror web site (using compression and encryption)
rsync -auz -e ssh remote:/dir/ . && rsync -auz -e ssh . remote:/dir/Synchronize current directory with remote one
ssh (Secure SHell)
ssh $USER@$HOST commandRun command on $HOST as $USER (default command=shell)
ssh -f -Y $USER@$HOSTNAME xeyesRun GUI command on $HOSTNAME as $USER
scp -p -r $USER@$HOST: file dir/Copy with permissions to $USER's home directory on $HOST
ssh -g -L 8080:localhost:80 root@$HOSTForward connections to $HOSTNAME:8080 out to $HOST:80
ssh -R 1434:imap:143 root@$HOSTForward connections from $HOST:1434 in to imap:143
wget (multi purpose download tool)
(cd dir/ && wget -nd -pHEKk http://www.pixelbeat.org/cmdline.html)Store local browsable version of a page to the current dir
wget -c http://www.example.com/large.fileContinue downloading a partially downloaded file
wget -r -nd -np -l1 -A '*.jpg' http://www.example.com/dir/Download a set of files to the current directory
wget ftp://remote/file[1-9].iso/FTP supports globbing directly
wget -q -O- http://www.pixelbeat.org/timeline.html | grep 'a href' | headProcess output directly
echo 'wget url' | at 01:00Download url at 1AM to current dir
wget --limit-rate=20k urlDo a low priority download (limit to 20KB/s in this case)
wget -nv --spider --force-html -i bookmarks.htmlCheck links in a file
wget --mirror http://www.example.com/Efficiently update a local copy of a site (handy from cron)
networking (Note ifconfig, route, mii-tool, nslookup commands are obsolete)
ethtool eth0Show status of ethernet interface eth0
ethtool --change eth0 autoneg off speed 100 duplex fullManually set ethernet interface speed
iwconfig eth1Show status of wireless interface eth1
iwconfig eth1 rate 1Mb/s fixedManually set wireless interface speed
iwlist scanList wireless networks in range
ip link showList network interfaces
ip link set dev eth0 name wanRename interface eth0 to wan
ip link set dev eth0 upBring interface eth0 up (or down)
ip addr showList addresses for interfaces
ip addr add 1.2.3.4/24 brd + dev eth0Add (or del) ip and mask (255.255.255.0)
ip route showList routing table
ip route add default via 1.2.3.254Set default gateway to 1.2.3.254
tc qdisc add dev lo root handle 1:0 netem delay 20msecAdd 20ms latency to loopback device (for testing)
tc qdisc del dev lo rootRemove latency added above
host pixelbeat.orgLookup DNS ip address for name or vice versa
hostname -iLookup local ip address (equivalent to host `hostname`)
whois pixelbeat.orgLookup whois info for hostname or ip address
netstat -tuplList internet services on a system
netstat -tupList active connections to/from system
windows networking (Note samba is the package that provides all this windows specific networking support)
smbtreeFind windows machines. See also findsmb
nmblookup -A 1.2.3.4Find the windows (netbios) name associated with ip address
smbclient -L windows_boxList shares on windows machine or samba server
mount -t smbfs -o fmask=666,guest //windows_box/share /mnt/shareMount a windows share
echo 'message' | smbclient -M windows_boxSend popup to windows machine (off by default in XP sp2)
text manipulation (Note sed uses stdin and stdout. Newer versions support inplace editing with the -i option)
sed 's/string1/string2/g'Replace string1 with string2
sed 's/\(.*\)1/\12/g'Modify anystring1 to anystring2
sed '/ *#/d; /^ *$/d'Remove comments and blank lines
sed ':a; /\\$/N; s/\\\n//; ta'Concatenate lines with trailing \
sed 's/[ \t]*$//'Remove trailing spaces from lines
sed 's/\([`"$\]\)/\\\1/g'Escape shell metacharacters active within double quotes
seq 10 | sed "s/^/ /; s/ *\(.\{7,\}\)/\1/"Right align numbers
sed -n '1000{p;q}'Print 1000th line
sed -n '10,20p;20q'Print lines 10 to 20
sed -n 's/.*\(.*\)<\/title>.*/\1/ip;<acronym title="quit after match" style="font-variant: normal; ">T;q</acronym>'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Extract title from HTML web page</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">sed -i 42d ~/.ssh/known_hosts</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Delete a particular line</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">sort -t. -k1,1n -k2,2n -k3,3n -k4,4n</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Sort IPV4 ip addresses</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo 'Test' | tr '[:lower:]' '[:upper:]'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Case conversion</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">tr -dc '[:print:]' < /dev/urandom</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Filter non printable characters</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">history | wc -l</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Count lines</td></tr><tr id="sets" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b>set operations</b> (Note you can <a href="http://www.pixelbeat.org/docs/env.html" style="text-decoration: none; outline-style: none; ">export LANG=C</a> for speed. Also these assume no duplicate lines within a file)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">sort file1 file2 | uniq</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><acronym title="Items in either file1 or file2" style="font-variant: normal; ">Union</acronym> of unsorted files</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">sort file1 file2 | uniq -d</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><acronym title="Items both in file1 and file2" style="font-variant: normal; ">Intersection</acronym> of unsorted files</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">sort file1 file1 file2 | uniq -u</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><acronym title="Items in file2 not in file1" style="font-variant: normal; ">Difference</acronym> of unsorted files</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">sort file1 file2 | uniq -u</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><acronym title="Items in only one file" style="font-variant: normal; ">Symmetric Difference</acronym> of unsorted files</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">join <acronym title="process whole line (assuming no NUL characters present)" style="font-variant: normal; ">-t'\0'</acronym> -a1 -a2 file1 file2</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Union of sorted files</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">join -t'\0' file1 file2</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Intersection of sorted files</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">join -t'\0' -v2 file1 file2</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Difference of sorted files</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">join -t'\0' -v1 -v2 file1 file2</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Symmetric Difference of sorted files</td></tr><tr id="math" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b>math</b></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo '(1 + sqrt(5))/2' | bc -l</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Quick math (Calculate φ). See also <a href="http://www.pixelbeat.org/scripts/bc" style="text-decoration: none; outline-style: none; ">bc</a></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo 'pad=20; min=64; (100*10^6)/((pad+min)*8)' | bc</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">More complex (int) e.g. This shows max FastE packet rate</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo 'pad=20; min=64; print (100E6)/((pad+min)*8)' | python</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Python handles scientific notation</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo 'pad=20; plot [64:1518] (100*10**6)/((pad+x)*8)' | gnuplot -persist</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Plot FastE packet rate vs packet size</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo 'obase=16; ibase=10; 64206' | bc</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Base conversion (decimal to hexadecimal)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo $((0x2dec))</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Base conversion (hex to dec) ((shell arithmetic expansion))</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">units -t '100m/<a href="http://www.pixelbeat.org/misc/usain_bolt/" style="text-decoration: none; outline-style: none; ">9.58s</a>' 'miles/hour'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Unit conversion (metric to imperial)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">units -t '500GB' 'GiB'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Unit conversion (<acronym title="powers of 10" style="font-variant: normal; ">SI</acronym> to <acronym title="powers of 2" style="font-variant: normal; ">IEC</acronym> prefixes)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">units -t '1 googol'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Definition lookup</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">seq 100 | (tr '\n' +; echo 0) | bc</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Add a column of numbers. See also <a href="http://www.pixelbeat.org/scripts/add" style="text-decoration: none; outline-style: none; ">add</a> and <a href="http://www.pixelbeat.org/scripts/funcpy" style="text-decoration: none; outline-style: none; ">funcpy</a></td></tr><tr id="dates" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b>calendar</b></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">cal -3</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Display a calendar</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">cal 9 1752</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Display a calendar for a particular month year</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">date -d fri</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">What date is it this friday. See also <a href="http://www.pixelbeat.org/scripts/day" style="text-decoration: none; outline-style: none; ">day</a></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">[ $(date -d "tomorrow" +%d) = "01" ] || exit</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">exit a script unless it's the last day of the month</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">date --date='25 Dec' +%A</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">What day does xmas fall on, this year</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">date --date='@2147483647'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Convert seconds since the epoch (1970-01-01 UTC) to date</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">TZ='America/Los_Angeles' date</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">What time is it on west coast of US (use tzselect to find TZ)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">date --date='TZ="America/Los_Angeles" 09:00 next Fri'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">What's the local time for 9AM next Friday on west coast US</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo "mail -s 'get the train' P@draigBrady.com < /dev/null" | at 17:45</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Email reminder</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo "DISPLAY=$DISPLAY xmessage cooker" | at "NOW + 30 minutes"</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Popup reminder</td></tr><tr id="locale" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b>locales</b></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">printf "%'d\n" 1234</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Print number with thousands grouping appropriate to locale</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">BLOCK_SIZE=\'1 ls -l</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">get ls to do thousands grouping appropriate to locale</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo "I live in `locale territory`"</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Extract info from locale database</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">LANG=en_IE.utf8 locale int_prefix</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Lookup locale info for specific country. See also <a href="http://www.pixelbeat.org/scripts/ccodes" style="text-decoration: none; outline-style: none; ">ccodes</a></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">locale | cut -d= -f1 | xargs locale -kc | less</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List fields available in locale database</td></tr><tr id="recode" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b>recode</b> (Obsoletes iconv, dos2unix, unix2dos)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">recode -l | less</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show available conversions (aliases on each line)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">recode windows-1252.. file_to_change.txt</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Windows "ansi" to local charset (auto does CRLF conversion)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">recode utf-8/CRLF.. file_to_change.txt</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Windows utf8 to local charset</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">recode iso-8859-15..utf8 file_to_change.txt</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Latin9 (western europe) to utf8</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">recode ../b64 <> file.b64</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Base64 encode</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">recode /qp.. <> file.txt</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Quoted printable decode</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">recode ..HTML <> file.html</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Text to HTML</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">recode -lf windows-1252 | grep euro</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Lookup <a href="http://www.pixelbeat.org/docs/utf8.html" style="text-decoration: none; outline-style: none; ">table of characters</a></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo -n 0x80 | recode latin-9/x1..dump</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show what a code represents in latin-9 charmap</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo -n 0x20AC | recode ucs-2/x2..latin-9/x</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show latin-9 encoding</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">echo -n 0x20AC | recode ucs-2/x2..utf-8/x</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show utf-8 encoding</td></tr><tr id="CDs" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b><acronym title="Compact Disks" style="font-variant: normal; ">CDs</acronym></b></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">gzip < /dev/cdrom > cdrom.iso.gz</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Save copy of data cdrom</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">mkisofs -V LABEL -r dir | gzip > cdrom.iso.gz</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Create cdrom image from contents of dir</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">mount -o loop cdrom.iso /mnt/dir</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Mount the cdrom image at /mnt/dir (read only)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">cdrecord -v dev=/dev/cdrom blank=fast</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Clear a CDRW</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">gzip -dc cdrom.iso.gz | cdrecord -v dev=/dev/cdrom -</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Burn cdrom image (use dev=ATAPI -scanbus to confirm dev)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">cdparanoia -B</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Rip audio tracks from CD to wav files in current dir</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">cdrecord -v dev=/dev/cdrom -audio -pad *.wav</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Make audio CD from all wavs in current dir (see also cdrdao)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">oggenc --tracknum='track' track.cdda.wav -o 'track.ogg'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Make ogg file from wav file</td></tr><tr id="disk_space" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b>disk space</b> (See also <a href="http://www.pixelbeat.org/fslint/" style="text-decoration: none; outline-style: none; ">FSlint</a>)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">ls -lSr</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show files by size, biggest last</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">du -s * | sort -k1,1rn | head</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show top disk users in current dir. See also <a href="http://www.pixelbeat.org/scripts/dutop" style="text-decoration: none; outline-style: none; ">dutop</a></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">df -h</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show free space on mounted filesystems</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">df -i</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show free inodes on mounted filesystems</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><acronym title="usually in /sbin/" style="font-variant: normal; ">fdisk</acronym> -l</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show disks partitions sizes and types (run as root)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><a href="http://www.pixelbeat.org/docs/packaging.html" style="text-decoration: none; outline-style: none; ">rpm</a> -q -a --qf '%10{SIZE}\t%{NAME}\n' | sort -k1,1n</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List all <a href="http://www.pixelbeat.org/docs/packaging.html" style="text-decoration: none; outline-style: none; ">packages</a> by installed size (Bytes) on rpm distros</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><a href="http://www.pixelbeat.org/docs/packaging.html" style="text-decoration: none; outline-style: none; ">dpkg</a>-query -W -f='${Installed-Size;10}\t${Package}\n' | sort -k1,1n</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List all <a href="http://www.pixelbeat.org/docs/packaging.html" style="text-decoration: none; outline-style: none; ">packages</a> by installed size (KBytes) on deb distros</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">dd bs=1 seek=2TB if=/dev/null of=ext3.test</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Create a large test file (taking no space). See also <a href="http://www.pixelbeat.org/scripts/truncate" style="text-decoration: none; outline-style: none; ">truncate</a></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">> file</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">truncate data of file or create an empty file</td></tr><tr id="monitor" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b>monitoring/debugging</b></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">tail -f /var/log/messages</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><a href="http://www.pixelbeat.org/docs/web/access_log/monitoring.html" style="text-decoration: none; outline-style: none; ">Monitor messages</a> in a log file</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">strace -c ls >/dev/null</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Summarise/profile system calls made by command</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">strace -f -e open ls >/dev/null</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List system calls made by command</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">ltrace -f -e getenv ls >/dev/null</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List library calls made by command</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><acronym title="usually in /usr/sbin/" style="font-variant: normal; ">lsof</acronym> -p <acronym title="process id of current shell" style="font-variant: normal; ">$$</acronym></td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List paths that process id has open</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">lsof ~</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List processes that have specified path open</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">tcpdump not port 22</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show network traffic except ssh. See also <a href="http://www.pixelbeat.org/scripts/tcpdump_not_me" style="text-decoration: none; outline-style: none; ">tcpdump_not_me</a></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">ps -e -o pid,args --forest</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List processes in a hierarchy</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">ps -e -o pcpu,cpu,nice,state,cputime,args --sort pcpu | sed '/^ 0.0 /d'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List processes by % cpu usage</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">ps -e -orss=,args= | sort -b -k1,1n | pr -TW$COLUMNS</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List processes by mem (KB) usage. See also <a href="http://www.pixelbeat.org/scripts/ps_mem.py" style="text-decoration: none; outline-style: none; ">ps_mem.py</a></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">ps -C firefox-bin -L -o pid,tid,pcpu,state</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List all threads for a particular process</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">ps -p 1,2</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List info for particular process IDs</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">last reboot</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show system reboot history</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">free -m</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show amount of (remaining) RAM (-m displays in MB)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">watch -n.1 'cat /proc/interrupts'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Watch changeable data continuously</td></tr><tr id="sysinfo" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b>system information</b> (see also <a href="http://www.pixelbeat.org/scripts/sysinfo" style="text-decoration: none; outline-style: none; ">sysinfo</a>) ('#' means root access is required)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">uname -a</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show kernel version and system architecture</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">head -n1 /etc/issue</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show name and version of distribution</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">cat /proc/partitions</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show all partitions registered on the system</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">grep MemTotal /proc/meminfo</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show RAM total seen by the system</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">grep "model name" /proc/cpuinfo</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show CPU(s) info</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><acronym title="usually in /sbin/" style="font-variant: normal; ">lspci</acronym> -tv</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show PCI info</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><acronym title="usually in /sbin/" style="font-variant: normal; ">lsusb</acronym> -tv</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show USB info</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">mount | column -t</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">List mounted filesystems on the system (and align output)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">grep -F capacity: /proc/acpi/battery/BAT0/info</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show state of cells in laptop battery</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">#</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">dmidecode -q | less</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Display SMBIOS/DMI information</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">#</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">smartctl -A /dev/sda | grep Power_On_Hours</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">How long has this disk (system) been powered on in total</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">#</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">hdparm -i /dev/sda</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Show info about disk sda</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">#</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">hdparm -tT /dev/sda</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Do a read speed test on disk sda</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">#</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">badblocks -s /dev/sda</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Test for unreadable blocks on disk sda</td></tr><tr id="interactive" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b>interactive</b> (see also <a href="http://www.pixelbeat.org/lkdb/" style="text-decoration: none; outline-style: none; ">linux keyboard shortcuts)</a></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><a href="http://www.pixelbeat.org/lkdb/readline.html" style="text-decoration: none; outline-style: none; ">readline</a></td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Line editor used by bash, python, bc, gnuplot, ...</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><a href="http://www.pixelbeat.org/lkdb/screen.html" style="text-decoration: none; outline-style: none; ">screen</a></td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Virtual terminals with detach capability, ...</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><a href="http://www.pixelbeat.org/lkdb/mc.html" style="text-decoration: none; outline-style: none; ">mc</a></td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Powerful file manager that can browse rpm, tar, ftp, ssh, ...</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><a href="http://www.pixelbeat.org/docs/web/access_log/analyzing.html" style="text-decoration: none; outline-style: none; ">gnuplot</a></td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Interactive/scriptable graphing</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">links</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Web browser</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">xdg-open <b>.</b></td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">open a file or url with the registered desktop application</td></tr><tr id="misc" class="pbtitle" style="background-color: rgb(180, 220, 100); "><td colspan="3" style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><b>miscellaneous</b></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><a href="http://www.pixelbeat.org/settings/.bashrc" style="text-decoration: none; outline-style: none; ">alias</a> hd='od -Ax -tx1z -v'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Handy hexdump. (usage e.g.: • hd /proc/self/cmdline | less)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "><a href="http://www.pixelbeat.org/settings/.bashrc" style="text-decoration: none; outline-style: none; ">alias</a> realpath='readlink -f'</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Canonicalize path. (usage e.g.: • realpath ~/../$USER)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">set | grep $USER</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Search current <a href="http://www.pixelbeat.org/docs/env.html" style="text-decoration: none; outline-style: none; ">environment</a></td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; "> </td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">touch -c -t 0304050607 file</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Set file timestamp (YYMMDDhhmm)</td></tr><tr><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">•</td><td class="nw" style="white-space: nowrap; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">python -m SimpleHTTPServer</td><td style="padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 2px; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px; border-top-style: ridge; border-right-style: ridge; border-bottom-style: ridge; border-left-style: ridge; border-top-color: rgb(255, 255, 192); border-right-color: rgb(255, 255, 192); border-bottom-color: rgb(255, 255, 192); border-left-color: rgb(255, 255, 192); border-collapse: collapse; ">Serve current directory tree at http://$HOSTNAME:8000/</td></tr></tbody></table></div><div style="color: gray; padding-top: 1em; width: 728px; "><span style="text-align: left; "><a href="http://creativecommons.org/licenses/by-sa/3.0/" rel="license" style="text-decoration: none; outline-style: none; ">©</a> Jan 7 2008</span> [<a href="javascript:comments()" style="text-decoration: none; outline-style: none; ">Comments</a>] | [<a href="javascript:bookmark()" style="text-decoration: none; outline-style: none; ">Add link to ...</a>]</div></span> <div style='clear: both;'></div> </div> <div class='post-footer'> <div class='post-footer-line post-footer-line-1'> <span class='post-author vcard'> Автор: <span class='fn' itemprop='author' itemscope='itemscope' itemtype='http://schema.org/Person'> <meta content='https://www.blogger.com/profile/02368133756375815593' itemprop='url'/> <a class='g-profile' href='https://www.blogger.com/profile/02368133756375815593' rel='author' title='author profile'> <span itemprop='name'>AeroDistrictSpoiler</span> </a> </span> </span> <span class='post-timestamp'> на <meta content='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5533.html' itemprop='url'/> <a class='timestamp-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5533.html' rel='bookmark' title='permanent link'><abbr class='published' itemprop='datePublished' title='2010-01-09T03:09:00-08:00'>03:09</abbr></a> </span> <span class='post-comment-link'> </span> <span class='post-icons'> <span class='item-control blog-admin pid-1514753057'> <a href='https://www.blogger.com/post-edit.g?blogID=1993888200613644933&postID=1863319569467219141&from=pencil' title='Изменить сообщение'> <img alt='' class='icon-action' height='18' src='https://resources.blogblog.com/img/icon18_edit_allbkg.gif' width='18'/> </a> </span> </span> <div class='post-share-buttons goog-inline-block'> <a class='goog-inline-block share-button sb-email' href='https://www.blogger.com/share-post.g?blogID=1993888200613644933&postID=1863319569467219141&target=email' target='_blank' title='Отправить по электронной почте'><span class='share-button-link-text'>Отправить по электронной почте</span></a><a class='goog-inline-block share-button sb-blog' href='https://www.blogger.com/share-post.g?blogID=1993888200613644933&postID=1863319569467219141&target=blog' onclick='window.open(this.href, "_blank", "height=270,width=475"); return false;' target='_blank' title='Написать об этом в блоге'><span class='share-button-link-text'>Написать об этом в блоге</span></a><a class='goog-inline-block share-button sb-twitter' href='https://www.blogger.com/share-post.g?blogID=1993888200613644933&postID=1863319569467219141&target=twitter' target='_blank' title='Опубликовать в Twitter'><span class='share-button-link-text'>Опубликовать в Twitter</span></a><a class='goog-inline-block share-button sb-facebook' href='https://www.blogger.com/share-post.g?blogID=1993888200613644933&postID=1863319569467219141&target=facebook' onclick='window.open(this.href, "_blank", "height=430,width=640"); return false;' target='_blank' title='Опубликовать в Facebook'><span class='share-button-link-text'>Опубликовать в Facebook</span></a><a class='goog-inline-block share-button sb-pinterest' href='https://www.blogger.com/share-post.g?blogID=1993888200613644933&postID=1863319569467219141&target=pinterest' target='_blank' title='Поделиться в Pinterest'><span class='share-button-link-text'>Поделиться в Pinterest</span></a> </div> </div> <div class='post-footer-line post-footer-line-2'> <span class='post-labels'> </span> </div> <div class='post-footer-line post-footer-line-3'> <span class='post-location'> </span> </div> </div> </div> <div class='comments' id='comments'> <a name='comments'></a> <h4>Комментариев нет:</h4> <div id='Blog1_comments-block-wrapper'> <dl class='avatar-comment-indent' id='comments-block'> </dl> </div> <p class='comment-footer'> <div class='comment-form'> <a name='comment-form'></a> <h4 id='comment-post-message'>Отправить комментарий</h4> <p> </p> <a href='https://www.blogger.com/comment/frame/1993888200613644933?po=1863319569467219141&hl=ru' id='comment-editor-src'></a> <iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410px' id='comment-editor' name='comment-editor' src='' width='100%'></iframe> <script src='https://www.blogger.com/static/v1/jsbin/4269703388-comment_from_post_iframe.js' type='text/javascript'></script> <script type='text/javascript'> BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html'); </script> </div> </p> </div> </div> </div></div> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_3836.html' id='Blog1_blog-pager-newer-link' title='Следующее'>Следующее</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_8410.html' id='Blog1_blog-pager-older-link' title='Предыдущее'>Предыдущее</a> </span> <a class='home-link' href='http://egg7-aerodistrictspoiler.blogspot.com/'>Главная страница</a> </div> <div class='clear'></div> <div class='post-feeds'> <div class='feed-links'> Подписаться на: <a class='feed-link' href='http://egg7-aerodistrictspoiler.blogspot.com/feeds/1863319569467219141/comments/default' target='_blank' type='application/atom+xml'>Комментарии к сообщению (Atom)</a> </div> </div> </div></div> </div> </div> <div class='column-left-outer'> <div class='column-left-inner'> <aside> </aside> </div> </div> <div class='column-right-outer'> <div class='column-right-inner'> <aside> <div class='sidebar section' id='sidebar-right-1'><div class='widget LinkList' data-version='1' id='LinkList2'> <h2>Avenger favourites (accented)</h2> <div class='widget-content'> <ul> <li><a href='http://www.chemtable.com/organizer.htm'>REG ORGANIZER</a></li> <li><a href='http://www.ritlabs.com/ru/products/thebat/'>The Bat!</a></li> <li><a href='http://www.adacore.com/home/'>ADA</a></li> <li><a href='http://www.mplayerhq.hu/design7/news.html'>MPlayer</a></li> <li><a href='http://www.auslogics.com/en/software/disk-defrag/'>AusLogics Disk Defrag</a></li> </ul> <div class='clear'></div> </div> </div><div class='widget LinkList' data-version='1' id='LinkList1'> <h2>Link list</h2> <div class='widget-content'> <ul> <li><a href='http://depositfiles.org/files/r8jhl32ln'>Print Wisdom V1.30.1 ("Blind Judge")</a></li> <li><a href='http://bit.ly/SJVJdQ'>Object Desk 8, 300 Mb</a></li> <li><a href='http://www.softpedia.com/get/Others/Home-Education/Brick.shtml'>Brick - SOFTPEDIA</a></li> <li><a href='http://www.abelssoft.net/checkdrive.php'>CheckDrive</a></li> <li><a href='http://www.softpedia.com/get/Internet/Other-Internet-Related/Dwg-Downloader.shtml'>Dwg Downloader 0.50 - SOFTPEDIA</a></li> <li><a href='http://www.nuclearsummer.zxq.net/home.php'>Zymic account</a></li> <li><a href='http://www.softpedia.com/get/Office-tools/Text-editors/Zed.shtml'>Zed - SOFTPEDIA</a></li> <li><a href='http://www.softpedia.com/get/System/File-Management/RecMount.shtml'>RecMount - SOFTPEDIA</a></li> <li><a href='http://forums.codeguru.com/showthread.php?p=2048189'>"One-word convention" - CODEGURU</a></li> <li><a href='http://devio.us/~alex79'>100Bitov Software Company</a></li> <li><a href='http://www.mytreedb.com/'>TreeDBNotes</a></li> <li><a href='http://www.silkwoodsoftware.com/'>Elyse</a></li> <li><a href='http://www.thebrain.com/'>PersonalBrain</a></li> <li><a href='http://www.esobi.com/'>eSobi</a></li> <li><a href='http://www.dreammail.eu/'>DreamMail</a></li> <li><a href='http://www.netsarang.com/products/xsh_overview.html'>Xshell</a></li> <li><a href='http://www.videolan.org/vlc/'>VLC video player</a></li> <li><a href='http://www.lexcycle.com/faq'>Stanza E-Book viewer (*.EPub)</a></li> <li><a href='http://somafm.com/doomed.pls'>SomaFM.Doomed</a></li> <li><a href='http://www.tv21.lv/'>TV XXI / TV21 Latvia</a></li> <li><a href='http://www.softpedia.com/get/Multimedia/Audio/Audio-Codecs/FLAC-for-Windows.shtml'>FLAC Format</a></li> <li><a href='http://www.goftp.com/'>Go FTP</a></li> <li><a href='http://www.revostock.com/Stock-Video-Footage/48924/Shape-shifter-kaleidoscope.htm'>Shape Shifter Kaleidoscope</a></li> <li><a href='http://www.vpr.net/listen/stream/'>BBC World Service Radio</a></li> <li><a href='http://dia-installer.de/'>Draw diagrams</a></li> <li><a href='http://www.clarion-call.org/extras/names.htm'>Names of God</a></li> <li><a href='http://gbmsem.ru/shema_proezda.html'>Так и будем на волынке играть?</a></li> <li><a href='http://keynesis.com/'>Professional USB Flash Drive and Hard Drive protection</a></li> <li><a href='http://higgins.house.gov/'>Congressman Brian Higgins</a></li> <li><a href='http://www.legalsounds.com/'>legalsounds</a></li> <li><a href='http://jivemansion.com/wp-content/uploads/2010/11/Avicii-Malo-Original-Mix.mp3'>Avicii Malo song (Spanish black magic)</a></li> <li><a href='http://www.youtube.com/playlist?list=PLBB6A87FB4962D15E&feature=viewall'>Kids 1</a></li> <li><a href='http://www.youtube.com/playlist?list=PL2258BB1BEBD6E9C8&feature=viewall'>Kids 2</a></li> <li><a href='http://www.answerbag.com/profile/1576224/rss/questions'>Answerbag: AeroDistrictSpoiler's questions (RSS-канал)</a></li> <li><a href='http://www.answerbag.com/profile/1576224/questions/'>AeroDistrictSpoiler's Questions | Answerbag (страничка)</a></li> <li><a href='http://212.49.103.207/'>Users pool (FTP)</a></li> <li><a href='http://www.hdtune.com/'>HD Tune</a></li> <li><a href='http://www.cdroller.com/'>CDRoller</a></li> <li><a href='http://zed.c3po.it/'>Zed UNIX</a></li> </ul> <div class='clear'></div> </div> </div><div class='widget Feed' data-version='1' id='Feed1'> <h2>НТВ. Новости</h2> <div class='widget-content' id='Feed1_feedItemListDisplay'> <span style='filter: alpha(25); opacity: 0.25;'> <a href='http://www.ntv.ru/exp/newsrss.jsp'>Загрузка...</a> </span> </div> <div class='clear'></div> </div><div class='widget Followers' data-version='1' id='Followers1'> <h2 class='title'>Постоянные читатели</h2> <div class='widget-content'> <div id='Followers1-wrapper'> <div style='margin-right:2px;'> <div><script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <div id="followers-iframe-container"></div> <script type="text/javascript"> window.followersIframe = null; function followersIframeOpen(url) { gapi.load("gapi.iframes", function() { if (gapi.iframes && gapi.iframes.getContext) { window.followersIframe = gapi.iframes.getContext().openChild({ url: url, where: document.getElementById("followers-iframe-container"), messageHandlersFilter: gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER, messageHandlers: { '_ready': function(obj) { window.followersIframe.getIframeEl().height = obj.height; }, 'reset': function() { window.followersIframe.close(); followersIframeOpen("https://www.blogger.com/followers.g?blogID\x3d1993888200613644933\x26colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMyMjIyMjIiByMyNDlmYTMqByNmZmZmZmYyByMwMDAwMDA6ByMyMjIyMjJCByMyNDlmYTNKByM5OTk5OTlSByMyNDlmYTNaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26postID\x3d1863319569467219141\x26origin\x3dhttp://egg7-aerodistrictspoiler.blogspot.com/"); }, 'open': function(url) { window.followersIframe.close(); followersIframeOpen(url); }, 'blogger-ping': function() { } } }); } }); } followersIframeOpen("https://www.blogger.com/followers.g?blogID\x3d1993888200613644933\x26colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMyMjIyMjIiByMyNDlmYTMqByNmZmZmZmYyByMwMDAwMDA6ByMyMjIyMjJCByMyNDlmYTNKByM5OTk5OTlSByMyNDlmYTNaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26postID\x3d1863319569467219141\x26origin\x3dhttp://egg7-aerodistrictspoiler.blogspot.com/"); </script></div> </div> </div> <div class='clear'></div> </div> </div><div class='widget BlogArchive' data-version='1' id='BlogArchive1'> <h2>Архив блога</h2> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive1_ArchiveList'> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2030/'> 2030 </a> <span class='post-count' dir='ltr'>(3)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2030/10/'> октября </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2030/09/'> сентября </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2030/04/'> апреля </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2024/'> 2024 </a> <span class='post-count' dir='ltr'>(2)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2024/08/'> августа </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2024/07/'> июля </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2019/'> 2019 </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2019/04/'> апреля </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2013/'> 2013 </a> <span class='post-count' dir='ltr'>(28)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2013/04/'> апреля </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2013/03/'> марта </a> <span class='post-count' dir='ltr'>(17)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2013/02/'> февраля </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2013/01/'> января </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2012/'> 2012 </a> <span class='post-count' dir='ltr'>(41)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2012/12/'> декабря </a> <span class='post-count' dir='ltr'>(8)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2012/11/'> ноября </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2012/10/'> октября </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2012/09/'> сентября </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2012/08/'> августа </a> <span class='post-count' dir='ltr'>(25)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2012/01/'> января </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2011/'> 2011 </a> <span class='post-count' dir='ltr'>(93)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2011/12/'> декабря </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2011/11/'> ноября </a> <span class='post-count' dir='ltr'>(5)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2011/10/'> октября </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2011/09/'> сентября </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2011/08/'> августа </a> <span class='post-count' dir='ltr'>(31)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2011/07/'> июля </a> <span class='post-count' dir='ltr'>(12)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2011/06/'> июня </a> <span class='post-count' dir='ltr'>(17)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2011/05/'> мая </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2011/04/'> апреля </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2010/'> 2010 </a> <span class='post-count' dir='ltr'>(74)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2010/03/'> марта </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2010/02/'> февраля </a> <span class='post-count' dir='ltr'>(19)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='javascript:void(0)'> <span class='zippy toggle-open'> ▼  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/'> января </a> <span class='post-count' dir='ltr'>(54)</span> <ul class='posts'> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/pdf-nuclear-safety-research-forum-2009_2827.html'>[PDF] Nuclear Safety Research Forum 2009</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_345.html'>Всё что угодно кроме денег; можно к кровати привязать</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/fileddvdfilterbazaarcpp-to-pdf-to_6388.html'>file___D_DVDFilter_bazaarCPP TO PDF TO HTMLoutput_...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_8308.html'>Самые разные бумажки под рукой превращаются в стикеры</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/ms-excel-tutorial-example-2-simple_6490.html'>MS Excel Tutorial. Example 2 - Simple neuro networ...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_6362.html'>Планета не может существовать без звезды.</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/ciao-summary_8731.html'>Перегрузка микрокода наноструктур: добавлены проло...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_4377.html'>Ещё пару инфарктов, и полетят все ёбаные надписи н...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_4559.html'>Про виды накопителей</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_871.html'>Так вот та, что написана по правилам, кажется рабо...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5566.html'>Так как бы улучшается язык - анализ интуитивной пр...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/html_9461.html'>Схема HTML->PDF->DOC для солидного блога будет раб...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/initial-ritual-not-so-good_7936.html'>Ритуал знакомства не слишком удачный (The initial ...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5931.html'>Заказал Прата и Джехани (старый диалект Си), но не...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/kozhara59k110_893.html'>kozhara59k1_10</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_8063.html'>Когда смеются боги</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/lcd-lg_5560.html'>Тест для LCD мониторов LG</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_606.html'>Ликвидация: аргументы "за" и "против"</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_1110.html'>Астробиологи о фибрилляциях и аффектах</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_9250.html'>Нота протеста</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5130.html'>В космосе времени нет, на Земле есть - дилема</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_4371.html'>Читательский билет из библиотеки Ленина, фотомонта...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_9634.html'>Официальные документы если кому интересно</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/firefox-suse_111.html'>Закладки Firefox в хостовой SUSE</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/ciao-prolog-system-next-generation_8680.html'>The Ciao Prolog System: A Next Generation Multi-Pa...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_989.html'>Море закладок</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/search-for-ext2-superblock-in_1725.html'>Search for ext2 superblock in...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_9508.html'>Масса, энергия, гравитация; абстрактные модели</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/suse_4156.html'>Рабочая станция SUSE</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/another-kind-of-authority-contacting_4403.html'>Another kind of authority contacting</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/dvd_2160.html'>Прямой доступ к коллекции DVD: проблема интерфейса</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/dvd_8242.html'>Прямой доступ к коллекции DVD: проблема интерфейса</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/mapping-between-knowledge-base-and-user_6468.html'>Mapping between knowledge base and user interface:...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_6426.html'>Из-под древней стены ослепительный чиж</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/vmware-mount-vmdk-read-only_9391.html'>vmware-mount: взлом утилиты для монтирования vmdk ...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_9965.html'>Веб-сайты, которые меня заинтересовали</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/diagnosis-would-cause-divine_5272.html'>"Certain diagnosis would cause divine intervention...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_8377.html'>Секретный объект под Бобруйском - сталкеры отдыхают</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/2002_732.html'>2002 год: пожар в Минске</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_3122.html'>Заметки на папиросах</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5199.html'>Синтезированная диадема</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/vmdk_66.html'>Загрузочный лазерный диск, выбираешь из меню vmdk ...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_3836.html'>Архитектура мышления</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5533.html'>Шпаргалка для линукса</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_8410.html'>Для таких больших файловых баз проектируют более у...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/context-management-framework_4397.html'>Context management framework</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/floating-microarchitecture_6295.html'>Floating Microarchitecture</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5521.html'>Архитектурные слои</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/happy-new-year_2015.html'>Happy New Year!! )</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_04.html'> </a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/copy-to_1076.html'>COPY "Гостиная->TIB->ISZ->Музыка" TO "Спальня->SuS...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/susevmware7vista64-slow-graphics_8156.html'>SUSE+VMWARE7+VISTA64: slow graphics, problems with...</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5092.html'>отзыв лицензии</a></li> <li><a href='http://egg7-aerodistrictspoiler.blogspot.com/2010/01/sorry-god-have-lost-your-stereo_1140.html'>Sorry, god have lost your stereo</a></li> </ul> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/'> 2009 </a> <span class='post-count' dir='ltr'>(666)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/12/'> декабря </a> <span class='post-count' dir='ltr'>(66)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/11/'> ноября </a> <span class='post-count' dir='ltr'>(79)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/10/'> октября </a> <span class='post-count' dir='ltr'>(23)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/09/'> сентября </a> <span class='post-count' dir='ltr'>(11)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/08/'> августа </a> <span class='post-count' dir='ltr'>(27)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/07/'> июля </a> <span class='post-count' dir='ltr'>(38)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/06/'> июня </a> <span class='post-count' dir='ltr'>(34)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/05/'> мая </a> <span class='post-count' dir='ltr'>(23)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/04/'> апреля </a> <span class='post-count' dir='ltr'>(109)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/03/'> марта </a> <span class='post-count' dir='ltr'>(99)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/02/'> февраля </a> <span class='post-count' dir='ltr'>(78)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2009/01/'> января </a> <span class='post-count' dir='ltr'>(79)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2008/'> 2008 </a> <span class='post-count' dir='ltr'>(25)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2008/12/'> декабря </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2008/10/'> октября </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2008/09/'> сентября </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2008/08/'> августа </a> <span class='post-count' dir='ltr'>(14)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2007/'> 2007 </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2007/04/'> апреля </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2006/'> 2006 </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2006/04/'> апреля </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2005/'> 2005 </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2005/04/'> апреля </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2003/'> 2003 </a> <span class='post-count' dir='ltr'>(29)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2003/12/'> декабря </a> <span class='post-count' dir='ltr'>(27)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2003/08/'> августа </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/2003/04/'> апреля </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/1996/'> 1996 </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/1996/09/'> сентября </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/1993/'> 1993 </a> <span class='post-count' dir='ltr'>(21)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/1993/10/'> октября </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/1993/09/'> сентября </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/1993/08/'> августа </a> <span class='post-count' dir='ltr'>(12)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/1991/'> 1991 </a> <span class='post-count' dir='ltr'>(1)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='javascript:void(0)'> <span class='zippy'> ►  </span> </a> <a class='post-count-link' href='http://egg7-aerodistrictspoiler.blogspot.com/1991/08/'> августа </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> </div> </div> <div class='clear'></div> </div> </div><div class='widget Profile' data-version='1' id='Profile1'> <h2>Обо мне</h2> <div class='widget-content'> <dl class='profile-datablock'> <dt class='profile-data'> <a class='profile-name-link g-profile' href='https://www.blogger.com/profile/02368133756375815593' rel='author' style='background-image: url(//www.blogger.com/img/logo-16.png);'> AeroDistrictSpoiler </a> </dt> </dl> <a class='profile-link' href='https://www.blogger.com/profile/02368133756375815593' rel='author'>Просмотреть профиль</a> <div class='clear'></div> </div> </div></div> </aside> </div> </div> </div> <div style='clear: both'></div> <!-- columns --> </div> <!-- main --> </div> </div> <div class='main-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> <footer> <div class='footer-outer'> <div class='footer-cap-top cap-top'> <div class='cap-left'></div> <div class='cap-right'></div> </div> <div class='fauxborder-left footer-fauxborder-left'> <div class='fauxborder-right footer-fauxborder-right'></div> <div class='region-inner footer-inner'> <div class='foot no-items section' id='footer-1'></div> <table border='0' cellpadding='0' cellspacing='0' class='section-columns columns-2'> <tbody> <tr> <td class='first columns-cell'> <div class='foot no-items section' id='footer-2-1'></div> </td> <td class='columns-cell'> <div class='foot no-items section' id='footer-2-2'></div> </td> </tr> </tbody> </table> <!-- outside of the include in order to lock Attribution widget --> <div class='foot section' id='footer-3' name='Нижний колонтитул'><div class='widget Attribution' data-version='1' id='Attribution1'> <div class='widget-content' style='text-align: center;'> Тема "Простая". Автор изображений для темы: <a href='http://www.istockphoto.com/googleimages.php?id=4072573&platform=blogger&langregion=ru' target='_blank'>gaffera</a>. Технологии <a href='https://www.blogger.com' target='_blank'>Blogger</a>. </div> <div class='clear'></div> </div></div> </div> </div> <div class='footer-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> </footer> <!-- content --> </div> </div> <div class='content-cap-bottom cap-bottom'> <div class='cap-left'></div> <div class='cap-right'></div> </div> </div> </div> <script type='text/javascript'> window.setTimeout(function() { document.body.className = document.body.className.replace('loading', ''); }, 10); </script> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/929741716-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY5wOF1Y8mUySTR5NOOEyjhB3azujw:1715563568800';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d1993888200613644933','//egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5533.html','1993888200613644933'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '1993888200613644933', 'title': '\u041a\u0430\u043f\u0435\u043b\u044c\u043a\u0430 \u0430\u0434\u0435\u043a\u0432\u0430\u0442\u043d\u043e\u0441\u0442\u0438 - Elena and Grizzlies', 'url': 'http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5533.html', 'canonicalUrl': 'http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5533.html', 'homepageUrl': 'http://egg7-aerodistrictspoiler.blogspot.com/', 'searchUrl': 'http://egg7-aerodistrictspoiler.blogspot.com/search', 'canonicalHomepageUrl': 'http://egg7-aerodistrictspoiler.blogspot.com/', 'blogspotFaviconUrl': 'http://egg7-aerodistrictspoiler.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'ru', 'localeUnderscoreDelimited': 'ru', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22\u041a\u0430\u043f\u0435\u043b\u044c\u043a\u0430 \u0430\u0434\u0435\u043a\u0432\u0430\u0442\u043d\u043e\u0441\u0442\u0438 - Elena and Grizzlies - Atom\x22 href\x3d\x22http://egg7-aerodistrictspoiler.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22\u041a\u0430\u043f\u0435\u043b\u044c\u043a\u0430 \u0430\u0434\u0435\u043a\u0432\u0430\u0442\u043d\u043e\u0441\u0442\u0438 - Elena and Grizzlies - RSS\x22 href\x3d\x22http://egg7-aerodistrictspoiler.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22\u041a\u0430\u043f\u0435\u043b\u044c\u043a\u0430 \u0430\u0434\u0435\u043a\u0432\u0430\u0442\u043d\u043e\u0441\u0442\u0438 - Elena and Grizzlies - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/1993888200613644933/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22\u041a\u0430\u043f\u0435\u043b\u044c\u043a\u0430 \u0430\u0434\u0435\u043a\u0432\u0430\u0442\u043d\u043e\u0441\u0442\u0438 - Elena and Grizzlies - Atom\x22 href\x3d\x22http://egg7-aerodistrictspoiler.blogspot.com/feeds/1863319569467219141/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/b22670830cd66512', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': '\u041f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443', 'key': 'link', 'shareMessage': '\u041f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': '\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f \u0432 Facebook', 'target': 'facebook'}, {'name': '\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u043e\u0431 \u044d\u0442\u043e\u043c \u0432 \u0431\u043b\u043e\u0433\u0435', 'key': 'blogThis', 'shareMessage': '\u041d\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u043e\u0431 \u044d\u0442\u043e\u043c \u0432 \u0431\u043b\u043e\u0433\u0435', 'target': 'blog'}, {'name': 'Twitter', 'key': 'twitter', 'shareMessage': '\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f \u0432 Twitter', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': '\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f \u0432 Pinterest', 'target': 'pinterest'}, {'name': '\u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u043f\u043e\u0447\u0442\u0430', 'key': 'email', 'shareMessage': '\u042d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0430\u044f \u043f\u043e\u0447\u0442\u0430', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27ru\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': '\u0414\u0430\u043b\u0435\u0435...', 'pageType': 'item', 'postId': '1863319569467219141', 'pageName': '\u0428\u043f\u0430\u0440\u0433\u0430\u043b\u043a\u0430 \u0434\u043b\u044f \u043b\u0438\u043d\u0443\u043a\u0441\u0430', 'pageTitle': '\u041a\u0430\u043f\u0435\u043b\u044c\u043a\u0430 \u0430\u0434\u0435\u043a\u0432\u0430\u0442\u043d\u043e\u0441\u0442\u0438 - Elena and Grizzlies: \u0428\u043f\u0430\u0440\u0433\u0430\u043b\u043a\u0430 \u0434\u043b\u044f \u043b\u0438\u043d\u0443\u043a\u0441\u0430'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': '\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c', 'linkCopiedToClipboard': '\u0421\u0441\u044b\u043b\u043a\u0430 \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0430 \u0432 \u0431\u0443\u0444\u0435\u0440 \u043e\u0431\u043c\u0435\u043d\u0430!', 'ok': '\u041e\u041a', 'postLink': '\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435'}}, {'name': 'template', 'data': {'name': 'Simple', 'localizedName': '\u041f\u0440\u043e\u0441\u0442\u0430\u044f', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': false, 'variant': 'wide', 'variantId': 'wide'}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': '\u0428\u043f\u0430\u0440\u0433\u0430\u043b\u043a\u0430 \u0434\u043b\u044f \u043b\u0438\u043d\u0443\u043a\u0441\u0430', 'description': 'This is a linux command line reference for common operations. Examples marked with \u2022 are valid/safe to paste without modification into a ter...', 'url': 'http://egg7-aerodistrictspoiler.blogspot.com/2010/01/blog-post_5533.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 1863319569467219141}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/82347172-lbx__ru.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/13464135-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList2', 'sidebar-right-1', document.getElementById('LinkList2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList1', 'sidebar-right-1', document.getElementById('LinkList1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FeedView', new _WidgetInfo('Feed1', 'sidebar-right-1', document.getElementById('Feed1'), {'title': '\u041d\u0422\u0412. \u041d\u043e\u0432\u043e\u0441\u0442\u0438', 'showItemDate': true, 'showItemAuthor': false, 'feedUrl': 'http://www.ntv.ru/exp/newsrss.jsp', 'numItemsShow': 5, 'loadingMsg': '\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430...', 'openLinksInNewWindow': true, 'useFeedWidgetServ': 'true'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FollowersView', new _WidgetInfo('Followers1', 'sidebar-right-1', document.getElementById('Followers1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar-right-1', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': '\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar-right-1', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'footer-3', document.getElementById('Attribution1'), {}, 'displayModeFull')); </script> </body> </html>