repo.or.cz
/
gromacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Had to move all wrapper scripts for the analysis programs to the scripts
[gromacs.git]
/
scripts
/
g_density.bat
blob
4028ff9436cae420e79a8821f97abada650887ad
1
@echo off
2
set DIRNAME=%~dp0%
3
REM BAT files only see args 1-9. We use shift to get all.
4
set ARGS=
5
:loop
6
if [%1] == [] goto endloop
7
set ARGS=%ARGS% %1
8
shift
9
goto loop
10
:endloop
11
%DIRNAME%gmx-ana.exe -type density %ARGS%