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

@@ -17,7 +17,7 @@ Example
-------
```powershell
PS> ./cd-etc
📂C:\Windows\System32\drivers\etc (has 2 files and 3 subfolders)
📂C:\Windows\System32\drivers\etc (has 5 files and 0 folders)
```
@@ -39,7 +39,7 @@ Script Content
This PowerShell script changes the working directory to the /etc directory.
.EXAMPLE
PS> ./cd-etc
📂C:\Windows\System32\drivers\etc (has 2 files and 3 subfolders)
📂C:\Windows\System32\drivers\etc (has 5 files and 0 folders)
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@@ -53,12 +53,12 @@ try {
$path = Resolve-Path "$env:WINDIR\System32\drivers\etc"
}
if (-not(Test-Path "$path" -pathType container)) {
throw "No /etc directory at 📂$path"
throw "No 'etc' folder found 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 entered (has $($files.Count) files and $($folders.Count) folders)"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0])"
@@ -66,4 +66,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)*