Sha256: 271a204d5457503dd2ddcb7966f6d3b37dc59e41317a27e11ddef52b49a67e47
Contents?: true
Size: 388 Bytes
Versions: 7
Compression:
Stored size: 388 Bytes
Contents
function which { $command = [Array](Get-Command $args[0] -errorAction continue) write-host $command[0].Definition } function test ([Switch] $d, [String] $path) { Resolve-Path $path| Out-Null; } function chown { exit 0 } function mkdir ([Switch] $p, [String] $path) { if(Test-Path $path) { exit 0 } else { New-Item $p -Type Directory -Force | Out-Null } }
Version data entries
7 entries across 7 versions & 2 rubygems