Linux教程

Linux bash/Shell获取CCTV6电影频道节目单

本文主要是介绍Linux bash/Shell获取CCTV6电影频道节目单,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#!/bin/bash
#查询CCTV6节目表

<<'COMMENT'
API:
https://api.cntv.cn/epg/epginfo?serviceId=tvcctv&c=cctv6&d=20210707&cb=abccctv5&t=jsonp
https://api.cntv.cn/epg/epginfo?serviceId=tvcctv&c=cctv6&d=20210707&cb=abccctv5&t=jsonp
https://api.cntv.cn/epg/epglist?serviceId=channel&t=jsonp&c=cctv6&cb=tv_box3
FROM:http://blog.hackkey.net/archives/linux-cctv6epg

COMMENT

jsonp="abccctv6"
epgURL="https://api.cntv.cn/epg/epginfo?serviceId=tvcctv&c=cctv6&d=%date%&cb=abccctv6&t=jsonp"
if [ $# -eq 1 ] && [[ "${1,,}" == "n" ]]
then
	today=$(date +"%Y%m%d" -d '+1 day')
else
	today=$(date +"%Y%m%d")
fi

jsonData=$(curl -sSfL ${epgURL//%date%/$today}|sed -r "s/^${jsonp}\(//;s/\)\;?\$//")

echo "$jsonData"|jq -r '.cctv6.program[]|.showTime+"\t"+.t'

这篇关于Linux bash/Shell获取CCTV6电影频道节目单的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!