I'm trying to use sed, and it asks me to print all lines where b-days are in November or December. The way the input file is set up,
sed -n '/^[^:]*:[^:]*:[^:]*:11/p' databook
gives me the b-days in november, i just don't know how to make it do an "or" to get both. any ideas?
sed -n '/^[^:]*:[^:]*:[^:]*:11/p' databook
gives me the b-days in november, i just don't know how to make it do an "or" to get both. any ideas?
Comment