git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@10817 f3b2605a-c512-4ea7-a41b-209d697bcdaa
8 lines
264 B
Plaintext
8 lines
264 B
Plaintext
# This 1-liner will extract all lines from
|
|
# the 3rd run in a log file and plot
|
|
# column 8 against column 1
|
|
#
|
|
# By Karl Hammond karlh at ugcs.caltech.edu
|
|
|
|
awk '/Step/ {n++} /Step/,/step/ {if (n==3) print}' log.lammps | grep -iv step | xmgrace -block - -bxy 1:8
|