15 lines
281 B
Bash
Executable File
15 lines
281 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [ $# -eq 0 ]; then
|
|
osascript <<< "
|
|
tell application \"iTerm2\"
|
|
create window with default profile
|
|
end tell
|
|
"
|
|
else
|
|
osascript <<< "
|
|
tell application \"iTerm2\"
|
|
create window with default profile command \"$*\"
|
|
end tell
|
|
"
|
|
fi
|