The retina display has 326 dpi resolution.It has sharp and slick screens around.When kept at a distance of 10-12 inch human eye can distinguish only upto 300 dpi.The retina desplay is used in iPhone4.The iPhone 4 screen provides 326 pixels.This has good resolution of 960x640 packed in 3.5 inch screen.These pixels are squeezed between two glossy aluminium nosilicate glass which is used in helicopter and high speed train wind-shields.
Sometimes we need to ignore multiple lines with certain words and get the list out of the file. usually it will be a log file to read . The below grep command can be used to ignore multiple words present in a text file. Lets say the file contain $ cat list.txt apple orange apple banana papaya Now we need to ignore line with orange , banana and papaya . So we can use the below grep command. $ cat list.txt | grep -Ev "orange|banana|papaya" apple apple It will ignore lines with the words in -v part of grep.
Comments
Post a Comment