Warning: Undefined array key "cperpage" in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 255

Warning: Undefined variable $output in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 325

Warning: Undefined variable $fixed_tags in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 326

Warning: Undefined variable $isshowdots in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 327

Warning: Undefined variable $tag_aditional in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 330

Warning: Undefined variable $tag_aditional in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 333

Warning: Undefined variable $tag_aditional in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 336

Warning: Undefined variable $post in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 345

Warning: Attempt to read property "ID" on null in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 345

Warning: Undefined variable $post in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 345

Warning: Attempt to read property "ID" on null in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 345

Warning: Undefined variable $more_text_link in /www/wwwroot/www.now163.com/wp-content/themes/twentytwentyfive/functions.php on line 345
awk计算某天是星期几 – 理想社会

awk计算某天是星期几

unix 下的 cal 没有办法具体计算 哪天是星期几,写了个 awk 计算:

echo "20110703" | awk '{ i=0; cald[0] = 0;
mon = substr( $1, 5,2 )
year = substr( $1, 1,4 )
d = substr( $1, 7 )
print $1
while("cal"" "mon" "year | getline)
{
i++;
if( i>2 )
{
for( j =1; j <=  NF;  j++ )
{
if( i == 3 )
week = ( 7 - NF + j -1)
else
week = j == 1? 7: j-1
cald[$j>=10?$j:"0"$j] = week
}
}
}
print cald[d]
}'

评论

发表回复

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据