From time to time I see similar framing for comments in bash scripts:
#!/bin/bash
#===================================================================================
#
# FILE: stale-links.sh
#
# USAGE: stale-links.sh [-d] [-l] [-oD logfile] [-h] [starting directories]
#
# DESCRIPTION: List and/or delete all stale links in directory trees.
# The default starting directory is the current directory.
# Don’t descend directories on other filesystems.
#===================================================================================
Is there any program to generate such a decoration for comments or do people usually create it manually?
P.S. After some search, I found similar threads:
How can I create a message box from the command line?
bash script , echo output in box