markdown Bash-only Laravel Artisan选项卡自动完成

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Bash-only Laravel Artisan选项卡自动完成相关的知识,希望对你有一定的参考价值。

Add the provided code in ~/.bash_profile ( or similarly sourced file ) and you'll get artisan command tab completes on any project on your system:

```bash
_artisan()
{
    local arg="${COMP_LINE#php }"

    case "$arg" in
        artisan*)
            COMP_WORDBREAKS=${COMP_WORDBREAKS//:}
            COMMANDS=`php artisan --raw --no-ansi list | sed "s/[[:space:]].*//g"`
            COMPREPLY=(`compgen -W "$COMMANDS" -- "${COMP_WORDS[COMP_CWORD]}"`)
            ;;
        *)
            COMPREPLY=( $(compgen -o default -- "${COMP_WORDS[COMP_CWORD]}") )
            ;;
        esac

    return 0
}
complete -F _artisan php
```

以上是关于markdown Bash-only Laravel Artisan选项卡自动完成的主要内容,如果未能解决你的问题,请参考以下文章

Larave中CSRF攻击

larave导出excel数据简单的组装

larave -- leftJoin IFNULL 链表查询

larave Elasticsearch scout Unsupported operand types报错

larave Elasticsearch scout Unsupported operand types报错

手把手教你跑Larave框架实战笔记系列之二