mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 04:56:12 +03:00
f70a3e0c9b
so that it will work for locations that have spaces in their names. refs: #2103
6 lines
220 B
Bash
Executable File
6 lines
220 B
Bash
Executable File
#!/bin/sh
|
|
# This script is a helper that starts a new terminal window
|
|
# in the cwd of the calling process, rather than using the
|
|
# default cwd which is usually the home directory.
|
|
exec wezterm start --cwd "$PWD" -- "$@"
|