mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-28 17:06:31 +02:00
12 lines
255 B
Bash
Executable File
12 lines
255 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -gt 0 ]; then
|
|
find $1 -type f | grep -E "\.(so|dylib)$"
|
|
else
|
|
echo "### Usage of 'findsharelib.sh' ###"
|
|
echo " To find shared libraries *.[so|dylib] under a <root_dir>"
|
|
echo ""
|
|
echo " $ findsharelib.sh <root_dir>"
|
|
echo ""
|
|
fi
|