Re: Command to extract saturdays and sundays
cal 01 2007 |
sed -e '
/[^0-9 ]/{
/[^a-zA-Z ]/b
}
:pad
s/^.\{1,19\}$/& /
tpad
s/^\(..\).*\(..\)$/\1 \2/
'
On Dec 22, 7:51 pm, apogeusiste...@gmail.com wrote:
> Hi:
>
> I´m looking for a command to show me all saturdays and sundays in a
> specified month. I create this command using awk, but awk change "cal"
|