我在 Infomaniak 的共享服务器上安装了 Drupal 9。上面安装了 Drush 和 Composer。
目前要使用 Composer,我必须执行composer2
命令。
目前要使用 Drush 我必须执行vendor/bin/drush
命令。
我创建了一个.bashrc
文件,因为它不存在:
cd ~
touch .bashrc
nano .bashrc
我应该在这个文件中放入什么才能通过输入drush
命令来使用 Drush 以及如何通过输入composer
命令来使用 Composer ?
source ~/.profile
alias composer="composer2"
我将上面的代码添加到文件中,但它没有执行任何操作。以下是 Drush 命令的 Infomaniak 文档:
https://www.infomaniak.com/en/support/faq/2152/administering-drupal-on-the-command-line-with-drush
答案1
您可以在全局文件中执行类似的操作。这允许我输入la
而不是ls -lah
:
使用您喜欢的文本编辑器将以下内容添加到系统范围的配置文件/etc/bash.bashrc
或用户的配置文件中:~/.bashrc
export LS_OPTIONS='--color=auto'
eval "`dircolors`"
alias ls='ls $LS_OPTIONS'
alias la='ls -lah'
通过执行命令应用更改
~$ source /etc/bashrc; source ~/.bashrc
答案2
采取
source ~/.profile
运行时在 .bashrc 之外。它正在寻找 ~/.profile 来运行,但没有找到它并退出。