Add files via upload
This commit is contained in:
parent
3bd57bca57
commit
e5fe3b9b03
2 changed files with 15 additions and 0 deletions
10
bash_tools/clean.sh
Normal file
10
bash_tools/clean.sh
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
read -p "Are you sure? " -n 1 -r
|
||||||
|
echo # (optional) move to a new line
|
||||||
|
if [[ ! $REPLY =~ ^[Yy]$ ]]
|
||||||
|
then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -rf Log
|
||||||
|
rm -rf Parameters
|
||||||
|
rm *.txt
|
5
bash_tools/make_new_previous.sh
Normal file
5
bash_tools/make_new_previous.sh
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
MAX_NUMBER=199
|
||||||
|
|
||||||
|
MyPATH="Previous++"
|
||||||
|
mkdir $MyPATH
|
||||||
|
cp Parameters/*_S$MAX_NUMBER.npy $MyPATH
|
Loading…
Reference in a new issue