What does export mean in Ubuntu? For example:
export PATH=$PATH:/usr/src/hive/build/dist/bin/
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This means, that your path is extended with
/usr/src/hive/build/dist/bin/. Normally /usr/bin, /bin, /usr/sbin, etc are “in your path”. If you have a programm /bin/sh, you can just type sh to run it. If you have a program in/usr/src/hive/build/dist/bin/appnameyou can just run appname to execute it.