mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
28 lines
335 B
Bash
Executable file
28 lines
335 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Use this file to generate a markdown template
|
|
|
|
cat > ros-$1.md <<EOF
|
|
|
|
ros-$1 -
|
|
# synopsis
|
|
|
|
**ros [options] $1** args...
|
|
|
|
<!-- # subcommands -->
|
|
|
|
<!-- somecommand -->
|
|
|
|
<!-- : description. end with a period. -->
|
|
|
|
# description
|
|
|
|
<!-- # options -->
|
|
<!-- -->
|
|
<!-- # Environmental Variables -->
|
|
|
|
# SEE ALSO
|
|
_ros_(1)
|
|
EOF
|
|
|