8 lines
84 B
Bash
Executable file
8 lines
84 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
|
|
for p in $(find $1 -type f );
|
|
do
|
|
cp $p "${p%.*}".sv.md
|
|
done
|