Skip to content

Instantly share code, notes, and snippets.

View Av0c's full-sized avatar

Quyen Duong Av0c

  • Finland
View GitHub Profile
@Av0c
Av0c / start.bat
Last active March 20, 2022 01:08
Batch script to initialize VSCode & Window Terminals on two directories
:: Start 2 Windows Terminal tabs in the respective folders
wt new-tab -d C:\path\to\folder\one --title Folder1 ; new-tab -d C:\path\to\folder\two --title Folder2
:: Start 2 VSCode windows in the 2 folders
cd C:\path\to\folder\one
call code .
cd C:\path\to\folder\two
code .