Skip to content

Instantly share code, notes, and snippets.

View Brawldude2's full-sized avatar
😾
Anger

Brawldude2

😾
Anger
View GitHub Profile
@anonymous1184
anonymous1184 / Clip.ahk
Last active October 25, 2024 20:07
Clipboard Wrapper

; Version: 2022.06.30.1
; Usages and examples: https://redd.it/mpf896
/* Clipboard Wrapper
.Locked ; Clipboard status.
.Check() ; Automated check (throws Exception).
.Backup() ; Manual backup.
@carlessanagustin
carlessanagustin / win2ix.md
Last active November 4, 2025 21:14
Windows and Unix command line equivalents
Windows command Unix command Notes
set env Set on Windows prints a list of all environment variables. For individual environment variables, set is the same as echo $ on Unix.
set Path export $PATH Print the value of the environment variable using set in Windows.
set PROJ -- result: PROJ=c:\project
echo %PROJ% echo $PROJ result: c:\project

|