mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 08:56:17 +08:00
8 lines
109 B
Bash
Executable File
8 lines
109 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for file in $`ls *.pod`
|
|
do
|
|
mdfile=`basename -s .pod $file`.md
|
|
pod2markdown $file $mdfile
|
|
done
|