powershell提供了get-content命令,这个命令还存在3个别名,分别是gc, cat, type,这4个是等同的。
get-content
gc
cat
type
function head(){ param( [String]$f, [int]$n=6 ) $cont = cat -TotalCount $n $f return $cont } head "data.txt"