Add wipbot local build

This commit is contained in:
pleb
2026-07-16 16:59:26 -07:00
parent 54803c5c5b
commit 1d9698fcbc
4 changed files with 34 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
```powershell
cd C:\Program Files (x86)\Steam\steamapps\common\Beat Saber\logs>
Get-Content .\_latest.log -Wait -Tail 50
```
`-Tail 50` shows the last 50 lines; `-Wait` keeps following new output (like `tail -f`).
Shorter alias:
```powershell
gc .\_latest.log -Wait -Tail 50
```