2008年10月28日 星期二

quote and unquote 應用


#!/bin/python
#coding: utf-8
# -*- coding: utf-8 -*-
import urllib

str = "測試utf8 編解碼"
str_en = urllib.quote(str).encode('utf-8')
print str_en
print urllib.unquote(str_en)
codeing 指定本文編碼

其他應用
from urllib import quote, unquote

input = u"http://test.net/~admin"
input = input.encode('utf8')
print quote(input) # http%3A//test.net/%7Eadmin
print quote(input, '') # http%3A%2F%2Ftest.net%2F%7Eadmin
print quote(input, '~/') # http%3A//test.net/~admin

2008年10月22日 星期三

取得使用者最後登入日期及密碼最後更改日期

last 使用者名稱 | head -n 1

chage -l 使用者名稱