douhui3330 2014-02-14 19:39
浏览 70
已采纳

在Mac OSx上安装和配置Laravel

I'm trying to configure and use Laravel php framework..

I'm following this Tutorial to install and configure it.

At this point I read:

$ chmod -R 0777 app/storage
// This is simply setting your environment - bootstrap/start.php
$ find -name 'bootstrap/start.php' -print -exec sed -i 's/your-machine-name/localhost/g' {} \; # add machine-name to local env, for instance "localhost"
// MAC OSX FRIENDLY VERSION: find bootstrap -name 'start.php' -exec sed -i '' -e 's/your-machine-name/localhost/g' {} \;

I'm a mac OSx user and I'm not understood this command:

find bootstrap -name 'start.php' -exec sed -i '' -e 's/your-machine-name/localhost/g' {} \;

What is this?

What should I do?

  • 写回答

1条回答 默认 最新

  • douxiluan6555 2014-02-14 19:46
    关注

    It appears to look for a file within the bootstrap directory named 'start.php'. For matching files, it will replace 'your-machine-name' with 'localhost'. To break it down:

    • find - Executes the find command
    • bootstrap - The folder to search in
    • -name 'start.php' - Searches for the file named 'start.php'
    • -exec - For each file that matches the above find, execute the following:
    • sed -i '' -e - Search and replace the following string: (-i modifies the file in-place, -e allows for multiple search/replaces if desired)
    • 's/your-machine-name/localhost/g' - Replace 'your-machine-name' with 'localhost' throughout the whole file
    • {} \; - Ends the find
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 ensp启动设备蓝屏,代码clock_watchdog_timeout
  • ¥15 Android studio AVD启动不了
  • ¥15 陆空双模式无人机怎么做
  • ¥15 想咨询点问题,与算法转换,负荷预测,数字孪生有关
  • ¥15 C#中的编译平台的区别影响
  • ¥15 软件供应链安全是跟可靠性有关还是跟安全性有关?
  • ¥15 电脑蓝屏logfilessrtsrttrail问题
  • ¥20 关于wordpress建站遇到的问题!(语言-php)(相关搜索:云服务器)
  • ¥15 【求职】怎么找到一个周围人素质都很高不会欺负他人,并且未来月薪能够达到一万以上(技术岗)的工作?希望可以收到写有具体,可靠,已经实践过了的路径的回答?
  • ¥15 Java+vue部署版本反编译