The Road Not Taken
Two roads diverged in a yellow wood,
And sorry I could not travel both
And be one traveler, long I stood
And looked down one as far as I could
To where it bent in the undergrowth;
Then took the other, as just as fair,
And having perhaps the better claim,
Because it was grassy and wanted wear;
Though as for that the passing there
Had worn them really about the same,
And both that morning equally lay
In leaves no step had trodden black.
Oh, I kept the first for another day!
Yet knowing how way leads on to way,
I doubted if I should ever come back.
I shall be telling this with a sigh
Somewhere ages and ages hence:
Two roads diverged in a wood, and I--
I took the one less traveled by,
And that has made all the difference.
新装的composer和php 8.3
drush随着project的code一起下载的
但是用drush command的时候提示-bash: drush: command not found
明明project里面又安装了drush 13.4
这个时候要做的是一点小修改
在user的目录里,比如我的是root,那就是 /root/.bash_profile
在这个文件里加上:
# include the current `vendor/bin` folder (Notice the `.` - This means current directory)
PATH="./vendor/bin:$PATH"
重点是后面那句path
保存
然再启动新的终端即可。
评论