pins.psm1
function md5sum ([string]$filename) { certutil -hashfile $filename MD5 } function cat ([string]$filename) { pygmentize.bat $filename } function which ([string]$filename) { Get-Command ($filename) } function open ([string]$filename) { Invoke-Item($filename) } function time([string]$command) { Measure-Command { $command } } Export-ModuleMember -Function cat Export-ModuleMember -Function md5sum Export-ModuleMember -Function which Export-ModuleMember -Function open Export-ModuleMember -Function time |