8 lines
102 B
Bash
Executable File
8 lines
102 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$(uname)" = "Linux" ]; then
|
|
/usr/local/bin/code $@
|
|
else
|
|
open -a "VSCodium" $@
|
|
fi
|