http://en.wikipedia.org/wiki/SQL
SELECT * from bash_history where command LIKE '%modprobe%'
% is the wildcard character in SQL!
%
http://www.sqlite.org/lang.html
Better: SELECT * from bash_history where lower(command) LIKE ‘%modprobe%’
;)
Name (required)
E-mail (required)
URI
× 1 = five
Your Comment
You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>
Better: SELECT * from bash_history where lower(command) LIKE ‘%modprobe%’
;)