PowerShell/docs/cd-logs.md

52 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

2024-11-08 12:38:20 +01:00
The *cd-logs.ps1* Script
===========================
2023-07-29 09:45:37 +02:00
cd-logs.ps1
2023-07-29 10:04:38 +02:00
Parameters
----------
2023-07-29 09:45:37 +02:00
```powershell
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
2023-07-29 10:04:38 +02:00
Script Content
--------------
2023-07-29 09:45:37 +02:00
```powershell
<#
.SYNOPSIS
Sets the working directory to the logs folder
.DESCRIPTION
This PowerShell script changes the current working directory to the logs directory.
.EXAMPLE
PS> ./cd-logs
📂/var/logs
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
function GetLogsDir {
if ($IsLinux) { return "/var/logs" }
$WinDir = [System.Environment]::GetFolderPath('Windows')
return "$WinDir\Logs"
}
try {
2024-11-08 12:35:11 +01:00
$path = GetLogsDir
Set-Location "$path"
"📂$path"
2023-07-29 09:45:37 +02:00
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
```
2024-11-20 11:52:20 +01:00
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:51:50)*