Libraries/OS.Unix/OS.Unix.psm1
<#
#> $Script:NS = "OS.Unix" # force english language to prevent weird localized output $env:LANG = "en_US.UTF-8" $env:LANGUAGE = "en_US" <# .SYNOPSIS Return a name without spaces .DESCRIPTION Long description .PARAMETER Distrib Parameter description .PARAMETER ReleaseId Parameter description .EXAMPLE An example .NOTES General notes #> function Get-OSName { [CmdletBinding()][OutputType([String])]Param ( [switch]$Online, [string]$Root = "/" ) Begin { Write-EnterFunction } Process { if ($Online) { $Root = '/' } $distrib = Get-OSDistrib -Online:$Online -Root $Root $releaseId = Get-OSReleaseId -Online:$Online -Root $Root # return $Distrib + "." + $ReleaseId.replace('.','') return "$Distrib $ReleaseId" } End { Write-LeaveFunction } } <# .SYNOPSIS Simple ping to a destination on the network .DESCRIPTION Long description .PARAMETER NameOrIP Name or IPAddress of destination host to ping .PARAMETER count Optional number of echo request to send. Default to 1. .EXAMPLE Invoke-Ping -NameOrIP localhost .EXAMPLE Invoke-Ping -NameOrIP remote.server.domain.com -Count 1 #> function Invoke-Ping { [CmdletBinding()]Param ( [string]$NameOrIP = "localhost", [int]$count = 1, [int]$timeout = 1 ) Begin { Write-EnterFunction } Process { ping -c $count -W $timeout $NameOrIP return $? } End { Write-LeaveFunction } } |