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
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。