This commit is contained in:
Perry Kivolowitz 2023-01-16 16:56:23 -06:00
parent a345ba497e
commit 70e3f938f2
2 changed files with 6 additions and 1 deletions

Binary file not shown.

View file

@ -1,3 +1,8 @@
#!/bin/bash
file_list=`git diff --name-only main | grep -i ".md"`
echo $file_list
for element in "${file_list[@]}"
do
echo "input: " $element ${element::-2}.pdf
done