mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-08 19:44:57 -05:00
18 lines
308 B
Bash
Executable File
18 lines
308 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "You must provide the compiler build directory"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p links_to_compiler_build/md
|
|
|
|
cd links_to_compiler_build/md
|
|
|
|
yourfilenames=`find $1/tools/concretelang/docs/concretelang -name "*.md"`
|
|
|
|
for entry in $yourfilenames
|
|
do
|
|
ln -s "$entry" -f
|
|
done
|