2024-10-10

This commit is contained in:
2024-10-10 12:56:56 +08:00
commit 7b347c848a
2648 changed files with 643965 additions and 0 deletions

20
install/fixextxt.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
MAX="20"
if [ -n "$1" ]; then
MAX=$1
fi
for i in `seq 1 $MAX`
do
echo $i
if [ $i -lt 10 ]; then
mv "ex_input$i.txt" "data0$i.in"
mv "ex_output$i.txt" "data0$i.out"
else
mv "ex_input$i.txt" "data$i.in"
mv "ex_output$i.txt" "data$i.out"
fi
done