check_user_for_caps.sh 183 B

12345
  1. #!/bin/bash
  2. # this requires sqlite3-pcre
  3. DB=/home/themusicgod1/TDL/urls.db
  4. sqlite3 $DB -line "select id, lower(url) from news WHERE url like \""$1"\" and url REGEXP '(.*[A-Z].*)' ;";