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