Skip to content

Instantly share code, notes, and snippets.

@andrewytliu
andrewytliu / subl
Created October 17, 2011 15:25
Sublime Text Open Directory
#!/bin/sh
nohup $HOME/bin/Sublime\ Text\ 2/sublime_text -n $* > /dev/null 2>&1 &
@andrewytliu
andrewytliu / swap.sh
Created June 22, 2011 11:57
Swap files or directories
#!/bin/bash
DEST=$1
FILE=${DEST%/}$RANDOM
mv $1 $FILE
mv $2 $1
mv $FILE $2