bashでUNIXタイムスタンプから日付/時刻を設定する方法
root@M501 />date
Thu Jan 1 00:10:49 UTC 1970
root@M501 />date +%s
652
root@M501 />date +%s -s "`date +%s`"
date: invalid date `662'
ご覧のとおり、 date +%s -s "2323123" は機能しません:/
[解決しよう] ..bashの下で使用できます
date +%s -s "@`date +%s`"
また
date -s @1361529589
ありがとう!
質問 #2 ビジーボックスでこれを達成するにはどうすればよいですか?
root@M501 />date -s @1361529589
date: invalid date `@1361529589'
多分次のような方法があります
echo '1361529589' > /dev/unix_time_stamp_or_whatever ? :)