All Questions
2 questions
1
vote
2
answers
1k
views
Accessing function documentation
Is there a way to access docstrings in Bash? How does one include a docstring in a function's definition in Bash?
More specifically how do I add and access docstrings to the following function?
...
12
votes
3
answers
8k
views
How to document my custom bash functions and aliases?
Problem:
I have multiple bash functions and aliases. I can't remember all of them off the top of my head, so I usually end up opening my .bash_functions and .bash_aliases files to find what I need.
...