Rich Bennett | 7fbaf50 | 2018-11-30 06:49:30 -0500 | [diff] [blame] | 1 | #!/bin/bash |
Rich Bennett | 169c134 | 2018-11-02 06:47:43 -0400 | [diff] [blame] | 2 | # Copyright (c) 2018 Open Network Automation Platform and contributors |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, |
| 11 | # software distributed under the License is distributed on an |
| 12 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, |
| 13 | # either express or implied. See the License for the specific |
| 14 | # language governing permissions and limitations under the License. |
| 15 | |
| 16 | # Create a list of submodules used to build documentation |
| 17 | # Usage: sh smsummary.sh output_file |
| 18 | # |
| 19 | |
Rich Bennett | 7fbaf50 | 2018-11-30 06:49:30 -0500 | [diff] [blame] | 20 | git submodule status | sed -e 's:^ ::' -e 's: :,:' -e 's: :,:' -e 's:[()]::g' -e 's:\.git::' > $1 |