25 lines
407 B
Bash
25 lines
407 B
Bash
#!/bin/bash
|
|
# 批量迁移 model 模块
|
|
cd src/tlusty/math
|
|
|
|
# 创建目录
|
|
mkdir -p model
|
|
|
|
# 移动文件
|
|
mv inilam.rs model
|
|
mv inifrc.rs model
|
|
mv inifrs.rs model
|
|
mv inifrt.rs model
|
|
mv inpdis.rs model
|
|
mv change.rs model
|
|
mv hedif.rs model
|
|
mv dwnfr.rs model
|
|
mv dwnfr0.rs model
|
|
mv dwnfr1.rs model
|
|
mv chctab.rs model
|
|
mv levset.rs model
|
|
mv levgrp.rs model
|
|
mv visini.rs model
|
|
mv grcor.rs model
|
|
echo "Done"
|