SELECT * FROM `Liste` WHERE Webseite LIKE '%http:// http://%%'
//the string in this case is "http:// http://"
Compress every folder in the current directory with strongest compression possible
for D in *; do [ -d "${D}" ] && tar -cf - $D | xz -9 -c - > $D.tar.xz; done