-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiles.sh
75 lines (67 loc) · 1.9 KB
/
files.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#! /bin/bash
# To automate the process of generating files in the format required by Prof. Krauss in PHYS 305.
# Pass 'tar' as an argument to tar your files.
makedir(){
## Makes a new directory depending on the directories already
## present. Yes, entering it as a number is both easier and more
## robust. But I wanted to flex B)
dirs=$(ls -d */)
num=0
## echo $dirs
for i in $dirs
do
echo ${i::-1}
while [[ "${i::-1}" -gt "$num" ]]
do
num=$((num+1))
done
done
num=$((num+1))
echo "Assignment Number $num"
mkdir $num
}
copy_template(){
## Copies the template into the working directory.
## Edits the filename depending on user input and
## the assignment number + problem number.
## Calls edit_template on each file created.
read -e -p "Number of Problems ": NO_PROBLEMS
for (( i=1; i<=$((NO_PROBLEMS)); i++ ))
do
echo "Problem Number $i"
read -e -p "Problem Name ": PROBLEM
filename="${PROBLEM}_${assignment_num}_${i}.py"
cp temp.py "${assignment_num}/$filename"
echo "Created ${assignment_num}/$filename"
edit_template
done
}
edit_template(){
## Edits the file template depending on the ass_no and
## problem number and description. And the filename.
## soln line
string="Solution to Problem Set ${assignment_num}, Problem ${i}."
sed -i "s/^Solution to Problem Set*/${string}/" ${assignment_num}/$filename
## description
read -e -p "Problem Description ": DESCRIPTION
sed -i "s/^<problem description>/${DESCRIPTION}/" ${assignment_num}/$filename
## args
sed -i "9 a\ ./${filename} <args> ## REMEMBER TO ADD ARGS!" ${assignment_num}/$filename
echo "Edited ${assignment_num}/$filename"
}
tar_files(){
## Tars 'em up.
## Now we take the directory
## as user input cuz yeah lol
read -e -p "Directory? ": DIR
tar -czvf "avichalk_${DIR}.tgz" ${DIR}
# tar -tzf "avichalk_${DIR}.tgz"
}
if [[ "$1" == "tar" ]]
then
tar_files
else
makedir
assignment_num=$num
copy_template
fi