This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/awk | |
# usage: yum list | ./fix_yum_list.awk | |
function reform(l) { | |
match(l, /^([^[:space:]]+)[[:space:]]+([^[:space:]]+)[[:space:]]+([^[:space:]].*$)/, f) | |
return f[1] "\t" f[2] "\t" f[3] | |
} | |
/^Installed Packages$/ { disp="installed"; next } | |
/^Available Packages$/ { disp="available"; next } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# 05/26/2012 jag | |
# COMPONENT_NAME: backup_prep.sh | |
# | |
# ORIGIN: Jeffrey Gipson | |
# | |
# Personal Proprietary | |
# (C) COPYRIGHT 2012 Jeffrey Gipson | |
# Unpublished work - All Rights Reserved | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#~/.mutt/aliases | |
alias nick Nicholas Levandoski <[email protected]> | |
alias tim Timothy Pitt <[email protected]> | |
alias steven Steven Jackson <[email protected]> | |
alias kaleb Kaleb Hornsby <[email protected]> | |
alias alug-admin nick, tim, steven |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
< foo.in cat \ | |
| cmd1 \ | |
| cmd2 \ | |
| cmd3 \ | |
> foo.out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set the basic credencials | |
# | |
set imap_user= '[email protected]' | |
set imap_pass= 'password' | |
set hostname = "gmail.com" | |
set realname = "gmailUser" | |
# Set GMAIL specific folders likem sent mail, drafts, All mail | |
set spoolfile = "imaps://imap.gmail.com/INBOX" | |
set folder = "imaps://imap.gmail.com/" |