Currently i have to analize some big files looking for a espefic word in .css located on my /var/www/ located on ubuntu server (ssh). There a way to make something like Ctrl+f in windows programatically in ubuntu to search the words ?
Or just i have to use some ftp tool to download my file in windows and looking for there ?
grep
for this..please edit your question and add some content of the file and what you want to search out from that.. – heemayl May 15 '15 at 15:26grep -n '.css' file.txt
, if you want.css
coming anywhere in a word..on the other hand if you want the words containing.css
trygrep -Pn '(?<=^)|(?<=\s).css(?=$|\s)' file.txt
.....you will get the lines containg.css
along with line numbers.. – heemayl May 15 '15 at 15:49