mirror of
https://asciireactor.com/otho/lammps-graphene.git
synced 2024-11-22 18:05:05 +00:00
13 lines
204 B
Bash
13 lines
204 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mkdir -p resolute_animation
|
||
|
|
||
|
dumps=$(find . -name '*.dump'|sed 's/.dump$//'|sort -n|sed 's/$/.dump/'|less)
|
||
|
|
||
|
step=1
|
||
|
for dump in $dumps; do
|
||
|
cp $dump resolute_animation/$((step++)).dump
|
||
|
done
|
||
|
|
||
|
|