Tell me more ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems.. It's 100% free, no registration required.

Let's say I have a script:

#!/bin/bash
echo $1
if [[ ! $1 ]];then
echo "True"
fi
export ABC="/home/aashish"

ABC is not available after the execution of this script. How can I make that variable persist after the execution as well?

share|improve this question
3  
No way. Have you read What scopes can shell variables have?? – manatwork Jul 3 '12 at 12:17
1  

1 Answer

up vote 4 down vote accepted

source it into current shell session.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.