If you have any encouragement from being united with Christ, if any comfort from his love, if any fellowship with the Spirit, if any tenderness and compassion, then make my joy complete by being like-minded, having the same love, being one in spirit and purpose. Do nothing out of selfish ambition or vain conceit, but in humility consider others better than yourselves. Each of you should look not only to your own interests, but also to the interests of others. Philippians 2:1-4
Program |
|
Command Syntax |
|
Functionality |
apt-get |
|
wget http://ftp-master.debian.org/ziyi_key_2006.asc -O - | sudo apt-key add -
|
|
update debian with 2006 security keys
|
exim |
|
for mid in `sudo mailq | grep K | cut -c 11-26` ; do sudo exim -Mvb $mid ; done
|
|
displays the message bodies for all frozen messages in exim mailq
|
find, sort |
|
find . -size +1000k -printf "%8k \t %50f \t %h\n" | sort
|
|
find all files w/ size > 1MB and sort by size
|
find |
|
find . -type f -exec chmod 644 {} \;
|
|
set permissions to rw-r--r-- recursively for all files in "."
|
find |
|
find . -type d -exec chmod 755 {} \;
|
|
set permissions to rwxr-xr-x recursively for all directories in "."
|
vi |
|
y}
|
|
yank to end of paragraph
|
vi |
|
gq}
|
|
reformat to end of paragraph
|
vi |
|
gqip
|
|
reformat the current paragraph
|
vi |
|
ctrl-j
|
|
jump to next marker/flag
|
ssh |
|
ssh -C -R 2048:localhost:22 user@host
|
|
ssh into host with compression enabled and a reverse tunnel setup on the host's port 2048
|
ssh |
|
ssh -p 2048 localhost
|
|
ssh through the reverse tunnel setup by the previous command
|
This is not necessarily Linux related, but creating PDF files on windows does not have to be expensive. Here is the link to a page describing how to do it: http://www.stat.tamu.edu/~henrik/GSWriter/GSWriter.html
links
| about
| resume
| contact
| guestbook
© 2005, 2006, 2007 by
Brian and Kristine Toone. All rights reserved. Digital images located anywhere on this website may not be reproduced in any form without verbal or written permission.
|
|