This file contains 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
styles [] { | |
# textmate focused scopes | |
# comment — for comments. | |
# // comment | |
.comment_line_double_slash : style { | |
color = light_green | |
italic = true |
This file contains 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
determineLibraryDependencies() { | |
read input | |
for f in $input; do | |
ldd $f | awk '/=>/ { print $1 }' | |
done | |
} | |
determineFullPathLibraryDependencies() { | |
read input | |
for f in $input; do |