parse dates from article link
This commit is contained in:
parent
56923b7d2e
commit
4ef633c7fa
@ -78,7 +78,11 @@ function istherenewissues() {
|
|||||||
echo "$LASTISSUE" > .newjiraissue
|
echo "$LASTISSUE" > .newjiraissue
|
||||||
}
|
}
|
||||||
function greppagedate() {
|
function greppagedate() {
|
||||||
year=$(curl -sSL "$*" | tr '<' '\r' | \egrep -i "date|datetime" -A 1 | \grep -Eo '\b[[:digit:]]{4}\b' | head -n1)
|
year=$(echo "$*" | egrep -Eo '\b[[:digit:]]{4}\b')
|
||||||
|
if [ -z "$year" ]
|
||||||
|
then
|
||||||
|
year=$(curl -sSL "$*" | tr '<' '\r' | \egrep -i "date|datetime" -A 1 | \grep -Eo '\b[[:digit:]]{4}\b' | head -n1)
|
||||||
|
fi
|
||||||
yearint=$(($year + 0))
|
yearint=$(($year + 0))
|
||||||
currentyear=$(echo `date +"%Y"`)
|
currentyear=$(echo `date +"%Y"`)
|
||||||
if [[ $yearint -ge 1970 && $yearint -le $currentyear ]]
|
if [[ $yearint -ge 1970 && $yearint -le $currentyear ]]
|
||||||
|
Loading…
Reference in New Issue
Block a user