how I can add a path to my directory?
Hello,
I used these commands to manage the folder and starting analysis
[izadi@lbox161 tophat-2.1.0.Linux_x86_64]$ cd /usr/data/nfs6/izadi/test
[izadi@lbox161 test]$ mkdir $HOME/bin1
[izadi@lbox161 test]$ ln -s HOME/bin1 /usr/data/nfs6/izadi/test
but I could not add the path to my environment
[izadi@lbox161 test]$ export PATH = $HOME/bin1:$PATH
export: Command not found.
What can I do please?
• 2,064 views
•
link
0 answers
No answers yet.
Log in to answer this question.
Hello Fereshteh!
We believe that this post does not fit the main topic of this site.
not related to bioinformatics.
For this reason we have closed your question. This allows us to keep the site focused on the topics that the community can help with.
If you disagree please tell us why in a reply below, we'll be happy to talk about it.
Cheers!
Hi,
You should not let any space between a variable name (
PATH), the affectation symbol (=) and its value in bash. Thus, I think it is better to add a personal directory at the end of the${PATH}var, in order to avoid namespace issues.Here are your command lines :