Skip to content

Instantly share code, notes, and snippets.

View hivivo's full-sized avatar
🏠
Working from Mars

Vivo hivivo

🏠
Working from Mars
View GitHub Profile
@hivivo
hivivo / useful.ps1
Last active February 25, 2023 23:53
Useful Windows Terminal commands
# batch renaming files
# e.g. ??.mp4 -> Prefix-??-Suffix.mp4
dir ??.mp4 | Rename-Item -NewName { "Prefix-$($_.BaseName)-Suffix.mp4" }