mirror of
https://asciireactor.com/otho/lammps-graphene.git
synced 2024-11-22 11:45:07 +00:00
13 lines
204 B
Bash
Executable File
13 lines
204 B
Bash
Executable File
#!/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
|
|
|
|
|