mirror of
https://github.com/pkivolowitz/asm_book.git
synced 2026-06-21 03:56:47 +08:00
8 lines
156 B
Bash
Executable file
8 lines
156 B
Bash
Executable file
#!/bin/bash
|
|
file_list=`git diff --name-only main | grep -i ".md"`
|
|
|
|
for element in "${file_list[@]}"
|
|
do
|
|
echo "input: " $element ${element::-2}.pdf
|
|
done
|
|
|