spelling fixes: demos (#2060)

This commit is contained in:
Josh Soref 2016-08-31 14:05:35 -04:00 committed by Travis Plunk
parent 61255447a0
commit 28b8eece67
3 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@ Function CleanInputString([string]$inputStr){
$outputStr
}
#EndRegion utilty functions
#EndRegion utility functions
#Region Class specifications

View file

@ -5,5 +5,5 @@ Write-host -Foreground Blue "Get recent SystemD journal messages"
Get-SystemDJournal -args "-xe" |Out-Host
#Drill into SystemD unit messages
Write-host -Foreground Blue "Get recent SystemD jounal messages for services and return Unit, Message"
Write-host -Foreground Blue "Get recent SystemD journal messages for services and return Unit, Message"
Get-SystemDJournal -args "-xe" | Where {$_._SYSTEMD_UNIT -like "*.service"} | Format-Table _SYSTEMD_UNIT, MESSAGE | Select-Object -first 10 | Out-Host

View file

@ -3,7 +3,7 @@
This demo shows examining, creating, and removing cron jobs via crontab.
Output of Get-CronJob is a strongly typed object with properties like DayOfWeek or Command.
Remove-CronJob prompts before removing the job unless you specifiy -Force.
Remove-CronJob prompts before removing the job unless you specify -Force.
Tab completion of -UserName is supported, e.g.