Regex looking for scripts without a /

Looking for bash script includes which use a period but NOT a preceding slash.  Slick little regex example:

$ grep "^\. [^/]*sh" *

Leave a Reply