wp-cli适用于windows cmd,但不适用于Gitbash

时间:2017-07-26 10:48:32

标签: cmd git-bash wp-cli

我使用Git-bash安装了wp-cli,创建了相关的PATH变量。

我现在可以在Windows CMD中键入'wp'并且它可以正常工作,但是Git-bash无法识别该命令。

我必须做些什么才能使用Git-bash,为什么不开箱即用?

1 个答案:

答案 0 :(得分:4)

我遇到了同样的问题。例如命令" wp cli version"正在使用cmd但不在cygwin中。

查看以下教程:https://deluxeblogtips.com/install-wp-cli-windows/

如果您使用的是cygwin,则需要创建另一个wp文件(不带.bat)扩展名。只需用以下内容命名为wp:

#!/usr/bin/env sh

dir=$(d=${0%[/\\]*}; cd "$d"; pwd)

# See if we are running in Cygwin by checking for cygpath program
if command -v 'cygpath' >/dev/null 2>&1; then
    # Cygwin paths start with /cygdrive/ which will break windows PHP,
    # so we need to translate the dir path to windows format. However
    # we could be using cygwin PHP which does not require this, so we
    # test if the path to PHP starts with /cygdrive/ rather than /usr/bin
    if [[ $(which php) == /cygdrive/* ]]; then
        dir=$(cygpath -m $dir);
    fi
fi

dir=$(echo $dir | sed 's/ /\ /g')
"${dir}/wp-cli.phar" "$@"