Why is PATH in ruby executed Shell Different than path in the Term? And how do I make them eqv?
puts %x[echo $SHELL]
puts %x[echo $PATH].split(':').length
returns
/bin/bash
8
but in shell:
/bin/bash
13
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.
Most likely because the shell started by
%xdoes not source your profile (it is not a login shell). If that’s the case, then you can do