mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
11 lines
135 B
Bash
Executable File
11 lines
135 B
Bash
Executable File
#!/bin/sh
|
|
|
|
prefix="${1}"
|
|
dylib="${2}"
|
|
|
|
"${prefix}/bin/sqlite3" >out <<EOF
|
|
.load ${dylib}
|
|
SELECT "asdf" REGEXP "(?i)^A";
|
|
EOF
|
|
grep 1 out
|