Skip to content

Instantly share code, notes, and snippets.

@tomhoover
Forked from jimjh/truecrypt_fix.bash
Last active August 29, 2015 14:14
Show Gist options
  • Save tomhoover/722b92cdb19854bae64e to your computer and use it in GitHub Desktop.
Save tomhoover/722b92cdb19854bae64e to your computer and use it in GitHub Desktop.
#!/bin/bash
libs=( "/usr/local/lib/libmacfuse_i32.2.dylib" \
"/usr/local/lib/libosxfuse_i32.2.dylib" \
"/usr/local/lib/libosxfuse_i64.2.dylib" \
"/usr/local/lib/libmacfuse_i64.2.dylib" \
"/usr/local/lib/libosxfuse_i32.la" \
"/usr/local/lib/libosxfuse_i64.la" \
"/usr/local/lib/pkgconfig/osxfuse.pc" )
truecrypt="/Applications/TrueCrypt.app/Contents/Resources/Library"
for lib in "${libs[@]}"
do
mv $lib "${truecrypt}/." && echo "Moved ${lib} to ${truecrypt}."
rm $lib
ln -s "${truecrypt}/$(basename $lib)" ${lib} && echo "Linked ${lib}."
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment