Enter: Difference between revisions

From Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:
I wrote two line commands to get into the calculation directories quickly!
I wrote two line commands to get into the calculation directories quickly!


1 Please add these two lines in your  ~/.bashrc file in tekla2  
1 Please add these two lines in your  ~/.bashrc file in tekla2  


'''myfunction() { cd $(qstat -j "$1" |grep workdir |awk '{print $2}'); } '''
'''myfunction() { cd $(qstat -j "$1" |grep workdir |awk '{print $2}'); } '''
Line 13: Line 13:




2 source the bashrc file:
2 Source the bashrc file:   '''source ~/.bashrc '''


source ~/.bashrc
3 How to use it in tekla2 terminal: '''enter  job-ID'''
 
3 To use it:
 
In tekla2 terminal: enter  job-ID


4 Example:
4 Example:


qli@tekla2:~$ qstat -u qli  
qli@tekla2:~$ qstat -u qli  
Line 34: Line 29:


qli@tekla2:/mnt/sirius00/home_lab_users/nlg/qli/lignin/alpha-O-4/is-reduce3-1$
qli@tekla2:/mnt/sirius00/home_lab_users/nlg/qli/lignin/alpha-O-4/is-reduce3-1$
5 Notes:
It only works in tekla2 terminal.

Revision as of 11:18, 23 January 2017

go back to Main Page, Computational Resources, Scripts, Scripts for VASP


Dear all,

I wrote two line commands to get into the calculation directories quickly!

1 Please add these two lines in your ~/.bashrc file in tekla2

myfunction() { cd $(qstat -j "$1" |grep workdir |awk '{print $2}'); }

alias enter=myfunction # you can use other command to replace "enter"


2 Source the bashrc file: source ~/.bashrc

3 How to use it in tekla2 terminal: enter job-ID

4 Example:

qli@tekla2:~$ qstat -u qli

job-ID prior name user state submit/start at queue slots ja-task-ID


129066 0.52674 opt-Test   qli          r     01/23/2017 09:07:36 c24m128.q@tekla2152               24        
129067 0.52674 opt-Test   qli          r     01/23/2017 09:07:45 c24m128.q@tekla2153               24  
     

qli@tekla2:~$ enter 129066

qli@tekla2:/mnt/sirius00/home_lab_users/nlg/qli/lignin/alpha-O-4/is-reduce3-1$


5 Notes:

It only works in tekla2 terminal.