Changes between Version 3 and Version 4 of SoftWare/ProjectMeta
- Timestamp:
- Apr 27, 2018, 2:21:11 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SoftWare/ProjectMeta
v3 v4 23 23 especially if there is a lot of data 24 24 25 Here an example to append all the folder of kind {{{*.mproj*'}}}(Coriolis example for some open data)25 Here an example to append all the folder of kind '{{{*.mproj*}}}' (Coriolis example for some open data) 26 26 at the end of the {{{PROJECT-META.yml}}} file. 27 27 {{{ 28 28 find . -name '*.mproj*' -a -type d | sed 's/^/ - /;' >> PROJECT-META.yml 29 29 }}} 30 The {{{find}}} command only search the right folders under the current one (.) 31 and the {{{sed}}} command add 4 spaces and the dash at the beginning of each line 32 in order to respect the YAML format. 30 33 31 34 == Repository ==