Grep Command
basic grep command:
grep 'text' folder/*
recursive grep command:
grep -r 'text' folder/*
case insensitive grep command:
grep -r 'text' folder/*
show line number grep command:
grep -n 'text' folder/*
You can also combine the flags
combined grep command:
grep -rin 'text' folder/*
Nano Command
basic nano command:
nano example.txt
open on line nano command:
nano +123 example.txt
Pages: 1 2