Find the answer to your Linux question:
Results 1 to 2 of 2
Hi, I was asked to substitute the PREFIX_HTDOCS/data/jobs with its real value. The `--install-htdocs' is located on "/var/www". And I'm so confused on what value of PREFIX_HTDOCS should I assign. ...
  1. #1
    Just Joined!
    Join Date
    Apr 2009
    Location
    Philippines
    Posts
    23

    Question What does "${prefix}/data/jobs" means?

    Hi,
    I was asked to substitute the PREFIX_HTDOCS/data/jobs with its real value. The `--install-htdocs' is located on "/var/www". And I'm so confused on what value of PREFIX_HTDOCS should I assign. Any idea?

    Thanks.

  2. #2
    Linux User
    Join Date
    Feb 2006
    Posts
    484
    set | grep PREFIX_HTDOCS

    ${prefix} is a shell variable reference

    If the set shows nothing you must set up the enviroment variable PREFIX_HTDOCS with the correct informations.

    probably
    export PREFIX_HTDOCS=/var/www

    in your case

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •