Updated the manuals

This commit is contained in:
Markus Fleschutz
2025-06-22 10:38:33 +02:00
parent df7368ff91
commit d8690419ea
661 changed files with 1512 additions and 966 deletions

View File

@ -1,7 +1,7 @@
The *cd-public.ps1* Script
===========================
This PowerShell script changes the working directory to the Public folder.
This PowerShell script sets the current working directory to the Public folder.
Parameters
----------
@ -16,8 +16,8 @@ Parameters
Example
-------
```powershell
PS> ./cd-public
📂C:\Users\Public entered (has 2 files and 3 subfolders)
PS> ./cd-public.ps1
📂C:\Users\Public with 2 files and 3 folders entered.
```
@ -34,12 +34,12 @@ Script Content
```powershell
<#
.SYNOPSIS
Sets the working directory to the Public folder
Sets the working dir to the Public folder
.DESCRIPTION
This PowerShell script changes the working directory to the Public folder.
This PowerShell script sets the current working directory to the Public folder.
.EXAMPLE
PS> ./cd-public
📂C:\Users\Public entered (has 2 files and 3 subfolders)
PS> ./cd-public.ps1
📂C:\Users\Public with 2 files and 3 folders entered.
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -48,17 +48,20 @@ Script Content
try {
if ($IsLinux) {
if (-not(Test-Path "~/Public" -pathType container)) {
throw "No 'Public' folder in your home directory yet"
}
$path = Resolve-Path "~/Public"
} else {
if (-not(Test-Path "~/../Public" -pathType container)) {
throw "No 'Public' folder yet"
}
$path = Resolve-Path "~/../Public"
}
if (-not(Test-Path "$path" -pathType container)) {
throw "No public folder at $path"
}
Set-Location "$path"
$files = Get-ChildItem $path -attributes !Directory
$folders = Get-ChildItem $path -attributes Directory
"📂$path entered (has $($files.Count) files and $($folders.Count) subfolders)"
"📂$path with $($files.Count) files and $($folders.Count) folders entered."
exit 0 # success
} catch {
"⚠️ Error: $($Error[0])"
@ -66,4 +69,4 @@ try {
}
```
*(page generated by convert-ps2md.ps1 as of 05/12/2025 22:02:52)*
*(page generated by convert-ps2md.ps1 as of 06/22/2025 10:37:34)*