Box 程序

servertime.py 245B

    # -*- coding: utf-8 -*- import time def local_string(): return time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()) def set_time(timestr): with open('/ramfs/current_time', 'w') as f: f.write('date -s "{}"'.format(timestr))