mirror of
https://github.com/pfloos/quack
synced 2024-11-04 05:03:49 +01:00
15 lines
236 B
Plaintext
15 lines
236 B
Plaintext
|
#! /bin/bash
|
||
|
|
||
|
if [ $# != 1 ]
|
||
|
then
|
||
|
echo "1 argument required!!"
|
||
|
else
|
||
|
mv Ov.dat Ov."$1".dat
|
||
|
mv Kin.dat Kin."$1".dat
|
||
|
mv Nuc.dat Nuc."$1".dat
|
||
|
mv ERI.dat ERI."$1".dat
|
||
|
mv F12.dat F12."$1".dat
|
||
|
mv Erf.dat Erf."$1".dat
|
||
|
fi
|
||
|
|