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

Posted

技术标签:

【中文标题】wp-cli 适用于 windows cmd,但不适用于 Gitbash【英文标题】:wp-cli works in windows cmd, but not in Gitbash 【发布时间】:2018-01-01 15:30:07 【问题描述】:

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

我现在可以在 Windows CMD 中输入“wp”并且它可以工作,但 Git-bash 无法识别该命令。

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

【问题讨论】:

【参考方案1】:

我遇到了同样的问题。例如,命令“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" "$@"

【讨论】:

以上是关于wp-cli 适用于 windows cmd,但不适用于 Gitbash的主要内容,如果未能解决你的问题,请参考以下文章

使用 Windows 任务计划程序打开 cmd 文件时执行但不启动服务器

部分视图部分适用于 JQuery,但不完全适用于 C# ASP.Net MVC 5

从适用于 Windows 10 的 Git Bash 隐藏用户名和计算机名称

为啥逻辑适用于函数但不使用类,合并排序算法

vue中将汉字按照首字母排序,也适用于其他地方,但不适用多音字

PyArray_SimpleNewFromData 从 uint8_t 到 NPY_UINT16。适用于linux但不适用于windows