WSL上的简单bash脚本不断给出“未知选项-”

时间:2019-05-31 18:59:47

标签: bash tmux windows-subsystem-for-linux

我正在尝试编写脚本以在WSL Windows 10中为开发环境设置tmux,但是它一直抛出此错误。 奇怪的是,如果我将此脚本复制到子目录或其他位置,有时它会起作用(取决于位置)。行为非常奇怪,好像我将代码复制到另一个文件并在另一个目录中运行时,有时会出现此错误,有时会运行,但有点中断,令人沮丧!

这是tmux bash脚本:

tmux.sh

#!/bin/sh
tmux new-session -d
tmux attach-session -d
tmux split-window -v
tmux split-window -h

当我运行它时会出现错误:

rw3iss@rw3iss:/mnt/c/Users/Ryan/Sites/testsite/src$ ./tmux.sh
tmux: unknown option --
no server running on /tmp/tmux-1000/default
tmux: unknown option --
no server running on /tmp/tmux-1000/default
: not found: ./dev.sh:
tmux: unknown option --
no server running on /tmp/tmux-1000/default
no server running on /tmp/tmux-1000/default

有什么想法吗?

0 个答案:

没有答案