檢測網域名稱有效期的 shell 指令碼
2007-11-10
[隱藏]
#!/bin/bashcd $home
/cron
for domain in `tac domain-names
.txt`
doif
[["$"
!="#"
]];then
# 網域名稱前面帶 # 的則忽略
domainwhoisinfo
=`whois $`
expirationdate
=`echo "$"
| grep --max-count=1
"expiration date:"`
expirationdate
="$"
expirationdate
=`date --date
="$"
"+%f %h:%m"`
expirationdate
="$"
# 國際網域名稱不包含時間
begindate_second
=`date +%s`
enddate_second
=`date --date
="$"
+%s`
remaindays
=`expr /(
$enddate_second - $begindate_second/)/
86400`
echo "$"
| email --from-name
"domain check"
--subject
"$: $, 還剩 $ 天" your_email_address@mail-provider
Cookie的有效期
cookie的有效期 cookie的maxage決定著cookie的有效期,單位為秒 second cookie中通過getmaxage 方法與setmaxage int maxage 方法來讀寫maxage屬性。如果maxage屬性為正數,則表示該cookie會在maxage秒之後自動失效。瀏覽器...
破解cornerstone的有效期問題
1.設定在finder裡顯示隱藏檔案 2.在前往選單按住option進入資源庫,然後進入以下目錄 資源庫 preference byhost 3.選擇乙個修改日期最新的.globalpreferences.plist檔案,使用xcode開啟 4.刪除含有cornerstone字樣的最後一行 重新啟動...
Cookie之生效目錄範圍與有效期 網域名稱等限制
今天在做專案的時候偶然發現乙個問題,在我localhost login userlogin下面設定的cooikes,在localhost portal portalindex裡面取不出來,但是在原來的localhost login userlogin下面是能取出來的,仔細看了一下cookie的引數,...