Sunday, September 22, 2019

'less' related

To search for 1st occurrence from top of file:
less +/FATAL log/production.log

To search for 1st occurrence from bottom of file:
less +?"Processing by" log/production.log


Rails & Mongo - connecting to Mongodb from rails console


client= Mongo::Client.new('mongodb://username:password@serverIP:27017/databaseName?authSource=authSource db')

db = client.database

db.collections