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
prev=$(du -bs . | awk '{print $1}'); sleep 1; | |
while true; do | |
now=$(du -bs . | awk '{print $1}'); | |
diff=$(echo -e "scale=3\n($now - $prev) / 1024 / 1024" | bc); | |
echo "diff: $diff"; | |
prev=$now; | |
sleep 1; | |
done |
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 | |
export SEP_CHAR="" | |
export QUOTE_CHAR="" | |
test "$1" == "--grep" && export SEP_CHAR="|" | |
( test "$1" == "--sql" || test -z "$1" ) && export SEP_CHAR="," && export QUOTE_CHAR="'" | |
new_list=$( pbpaste | perl -e 'chomp(@lines = <STDIN>); print q{(} . join( $ENV{SEP_CHAR} => map { $ENV{QUOTE_CHAR} . $_ . $ENV{QUOTE_CHAR} } @lines ) . q{)}' ) | |
echo $new_list | pbcopy |
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
sub do_dir { | |
my ($dir) = @_; | |
chdir $dir; | |
my @entries = map { chomp; $_ } grep { m{/$}xms } qx/svn ls/; | |
system qw/svn update -N --set-depth=empty/, @entries; | |
do_dir("$dir/$_") for @entries; | |
} |
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 | |
save_dir="$HOME/Library/Application Support/minecraft/saves" | |
dropbox_dir="$HOME/Dropbox/minecraft/world1_backups/" | |
dest_file=$( date '+%Y%m%d_%H%M%S.tar.gz' ) | |
world=$1 | |
test -z "$world" && world=World1 | |
cd "$save_dir" |
NewerOlder