Install PECL modules without the prompts

前端 未结 3 1081
滥情空心
滥情空心 2021-01-30 04:49

I just installed PHP on Ubuntu Natty from source.

I\'m trying to use PECL to install additional modules like APC and Memcache. I\'m using something like this:

         


        
相关标签:
3条回答
  • 2021-01-30 05:21

    Obinwanne's Hill answer nailed it for me, so I'm not providing anything new here, but the following seems like the absolute shortest also without any fancy tools.

    echo '' | pecl install apc
    
    0 讨论(0)
  • 2021-01-30 05:28

    The following code seems to work ok:

    printf "\n" | pecl install apc
    

    You can also replace apc with any other PECL package.

    Cheers.

    0 讨论(0)
  • 2021-01-30 05:43

    The "yes" command can do more than just type "yes"; it can type anything you want, over and over. Including an empty line, which is a good way to accept defaults.

    I just needed this myself, so here is what worked well for me:

    yes '' | pecl install -f apc
    
    0 讨论(0)
提交回复
热议问题