2012-12-12 12:52:29 +00:00
# Print cyan underlined header
function header( ) {
echo -e " $UNDERLINE $CYAN $1 $NOCOLOR "
}
2012-10-12 11:15:29 +00:00
# Create a new directory and enter it
2012-11-01 11:27:12 +00:00
function md( ) {
2012-10-12 11:15:29 +00:00
mkdir -p " $@ " && cd " $@ "
}
2013-04-25 19:54:10 +00:00
# cd into whatever is the forefront Finder window.
cdf( ) {
cd "`osascript -e 'tell app " Finder" to POSIX path of (insertion location as alias)'`"
}
2012-11-15 12:31:00 +00:00
# Find shorthand
function f( ) {
2012-12-26 06:09:35 +00:00
find . -name " $1 " 2>/dev/null
2012-11-15 12:31:00 +00:00
}
2013-03-14 19:22:15 +00:00
# Quick grep: ag (+sack), ack or grep
if command -v sag >/dev/null 2>& 1; then alias g = "sack -ag"
elif command -v ag >/dev/null 2>& 1; then alias g = "ag -i"
elif command -v ack >/dev/null 2>& 1; then alias g = "ack -ri"
else alias g = "grep -ri" ; fi
2013-01-11 11:01:57 +00:00
# Compare original and gzipped file size
2012-10-12 11:15:29 +00:00
function gz( ) {
2013-01-11 11:01:57 +00:00
local origsize = $( wc -c < " $1 " )
local gzipsize = $( gzip -c " $1 " | wc -c)
local ratio = $( echo " $gzipsize * 100/ $origsize " | bc -l)
printf "Original: %d bytes\n" " $origsize "
printf "Gzipped: %d bytes (%2.2f%%)\n" " $gzipsize " " $ratio "
2012-10-12 11:15:29 +00:00
}
# Test if HTTP compression (RFC 2616 + SDCH) is enabled for a given URL.
# Send a fake UA string for sites that sniff it instead of using the Accept-Encoding header. (Looking at you, ajax.googleapis.com!)
function httpcompression( ) {
encoding = " $( curl -LIs -H 'User-Agent: Mozilla/5 Gecko' -H 'Accept-Encoding: gzip,deflate,compress,sdch' " $1 " | grep '^Content-Encoding:' ) " && echo " $1 is encoded using ${ encoding #* } " || echo " $1 is not using any encoding "
}
2012-12-13 12:26:57 +00:00
# Show HTTP headers for given URL
# Usage: headers <URL>
# https://github.com/rtomayko/dotfiles/blob/rtomayko/bin/headers
function headers( ) {
curl -sv -H "User-Agent: Mozilla/5 Gecko" " $@ " 2>& 1 >/dev/null |
grep -v "^\*" |
grep -v "^}" |
cut -c3-
}
2012-12-19 12:59:34 +00:00
# Remove screenshots from desktop
function cleandesktop( ) {
header "Cleaning desktop..."
for file in ~/Desktop/Screen\ Shot*.png; do
unlink " $file "
done
echo
}
2012-10-19 11:16:29 +00:00
# Extract archives of various types
function extract( ) {
if [ -f $1 ] ; then
local dir_name = ${ 1 %.* } # Filename without extension
case $1 in
*.tar.bz2) tar xjf $1 ; ;
*.tar.gz) tar xzf $1 ; ;
*.tar.xz) tar Jxvf $1 ; ;
*.tar) tar xf $1 ; ;
*.tbz2) tar xjf $1 ; ;
*.tgz) tar xzf $1 ; ;
*.bz2) bunzip2 $1 ; ;
2012-11-09 08:31:06 +00:00
*.rar) unrar x $1 $2 ; ;
2012-10-19 11:16:29 +00:00
*.gz) gunzip $1 ; ;
*.zip) unzip -d$dir_name $1 ; ;
*.Z) uncompress $1 ; ;
*) echo " ' $1 ' cannot be extracted via extract() " ; ;
esac
else
echo " ' $1 ' is not a valid file "
fi
}
2012-10-31 12:38:56 +00:00
# Print nyan cat
# https://github.com/steckel/Git-Nyan-Graph/blob/master/nyan.sh
# If you want big animated version: `telnet miku.acm.uiuc.edu`
function nyan( ) {
echo
echo -en $RED '-_-_-_-_-_-_-_'
2012-12-12 12:52:29 +00:00
echo -e $NOCOLOR $BOLD ',------,' $NOCOLOR
2012-10-31 12:38:56 +00:00
echo -en $YELLOW '_-_-_-_-_-_-_-'
2012-12-12 12:52:53 +00:00
echo -e $NOCOLOR $BOLD '| /\_/\\' $NOCOLOR
2012-10-31 12:38:56 +00:00
echo -en $GREEN '-_-_-_-_-_-_-'
2012-12-12 12:52:29 +00:00
echo -e $NOCOLOR $BOLD '~|__( ^ .^)' $NOCOLOR
2012-10-31 12:38:56 +00:00
echo -en $CYAN '-_-_-_-_-_-_-'
2012-12-12 12:52:53 +00:00
echo -e $NOCOLOR $BOLD '"" ""' $NOCOLOR
2012-10-31 12:38:56 +00:00
echo
}
2012-11-09 10:05:30 +00:00
2012-12-12 11:18:16 +00:00
# Copy public SSH key to clipboard. Generate it if necessary
ssh-key( ) {
file = " $HOME /.ssh/id_rsa.pub "
if [ ! -f " $file " ] ; then
ssh-keygen -t rsa
fi
2013-03-14 19:22:32 +00:00
cat " $file "
2012-12-12 11:18:16 +00:00
}
2012-12-12 10:41:12 +00:00
# Create an SSH key and uploads it to the given host
2012-11-12 12:10:05 +00:00
# Based on https://gist.github.com/1761938
2013-02-10 20:14:12 +00:00
ssh-add-host( ) {
2012-11-09 10:05:30 +00:00
username = $1
hostname = $2
identifier = $3
2012-12-12 12:52:29 +00:00
if [ [ " $identifier " = = "" ] ] || [ [ " $username " = = "" ] ] || [ [ " $hostname " = = "" ] ] ; then
2013-02-10 20:14:12 +00:00
echo "Usage: ssh-add-host <username> <hostname> <identifier>"
2012-11-09 10:05:30 +00:00
else
2013-02-10 20:14:12 +00:00
header "Generating key..."
2012-11-09 10:05:30 +00:00
if [ ! -f " $HOME /.ssh/ $identifier .id_rsa " ] ; then
ssh-keygen -f ~/.ssh/$identifier .id_rsa -C " $USER $( date +'%Y/%m%/%d %H:%M:%S' ) "
fi
if ! grep -Fxiq " host $identifier " " $HOME /.ssh/config " ; then
echo -e " Host $identifier \n\tHostName $hostname \n\tUser $username \n\tIdentityFile ~/.ssh/ $identifier .id_rsa " >> ~/.ssh/config
fi
2013-02-10 20:14:12 +00:00
header "Uploading key..."
2012-11-09 10:05:30 +00:00
ssh $identifier 'mkdir -p .ssh && cat >> ~/.ssh/authorized_keys' < ~/.ssh/$identifier .id_rsa.pub
tput bold; ssh -o PasswordAuthentication = no $identifier true && { tput setaf 2; echo "SSH key added." ; } || { tput setaf 1; echo "Failure" ; } ; tput sgr0
2012-11-28 08:41:42 +00:00
_ssh_reload_autocomplete
2012-11-09 10:05:30 +00:00
fi
}
2012-11-27 14:24:59 +00:00
# Find files with Windows line endings (and convert then to Unix in force mode)
2013-02-12 06:03:26 +00:00
# USAGE: crlf [file] [--force]
2012-11-27 14:24:59 +00:00
function crlf( ) {
2013-02-12 06:03:26 +00:00
local force =
# Single file
if [ " $1 " != "" ] && [ " $1 " != "--force" ] ; then
[ " $2 " = = "--force" ] && force = 1 || force = 0
_crlf_file $1 $force
return
fi
# All files
2012-11-27 14:24:59 +00:00
[ " $1 " = = "--force" ] && force = 1 || force = 0
for file in $( find . -type f -not -path "*/.git/*" -not -path "*/node_modules/*" | xargs file | grep ASCII | cut -d: -f1) ; do
2013-02-12 06:03:26 +00:00
_crlf_file $file $force
2012-11-27 14:24:59 +00:00
done
}
2013-02-12 06:03:26 +00:00
function _crlf_file( ) {
grep -q $'\x0D' " $1 " && echo " $1 " && [ $2 ] && dos2unix " $1 "
}
2012-12-12 12:52:53 +00:00
2014-01-17 15:21:29 +00:00
function git-work( )
{
if [ -s ~/.gitlocal ] ; then
unlink ~/.gitlocal
fi
ln -s ~/.gitlocal_work ~/.gitlocal
}
function git-private( )
{
if [ -s ~/.gitlocal ] ; then
unlink ~/.gitlocal
fi
ln -s ~/.gitlocal_private ~/.gitlocal
}
2013-01-10 10:56:34 +00:00
# Add special aliases that will copy result to clipboard (escape → escape+)
2013-09-19 17:38:15 +00:00
for cmd in password hex2hsl hex2rgb escape codepoint ssh-key myip; do
2013-01-10 10:56:34 +00:00
eval " function $cmd +() { $cmd \$@ | c; } "
done