Files
mapmap/sh_show_libs.sh
2016-10-10 02:43:50 -04:00

9 lines
170 B
Bash
Executable File

#!/bin/bash
unamestr=$(uname)
if [[ $unamestr == "Darwin" ]]; then
otool -L mapmap.app/Contents/MacOS/mapmap
elif [[ $unamestr == "Linux" ]]; then
ldd mapmap
fi