Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Docker-CI
0.7.1
Private/Convert-ToUnixPath.ps1
function
Convert-ToUnixPath
{
[
CmdletBinding
(
)
]
param
(
[
Parameter
(
Mandatory
=
$true
)
]
[String]
$Path
)
return
$Path
.
Replace
(
'\'
,
'/'
)
}