-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple input files to multiple output files with links ? #69
Comments
Hi,
But using bash scripting and tools such as Example using find . -name '*.sh' -exec bash -c 'file="{}" ; shdoc < "${file}" > "${file%.sh}.md"' \; Example using ls *.sh | xargs -I{} bash -c 'file="{}" ; shdoc < "${file}" > "${file%.sh}.md"' Example using a while read -r 'file'; do
shdoc < "${file}" > "${file%.sh}.md"
done << EOF
MyLib.sh
MyScript.sh
EOF |
Another example is using |
Hi @landure for generating multiple files, I came up with
Thanks for your help |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I would like to know if you already used this tool to take multiple files (like a set of tools function files and a script) and generate the documentation for the whole.
Would it be possible to make links automatically between those files or is it mandatory to concat everything to one single file to a single MD file too?
I hope my question is quite understandable...
to illustrate a simple scenario :
The text was updated successfully, but these errors were encountered: