Search Results

6
votes

How can I change the text color in the windows command prompt

On windows, you can do it easily in three ways: require 'win32console' puts "\e[31mHello, World!\e[0m" Now you could extend String with a small method called …
4
votes

How can I extract a range of lines from a text file on unix?

Quite simple using head/tail: head -16482 in.sql | tail -258 > out.sql using sed: sed -n '16482,16482p' in.sql > out.sql us …