{"id":2802,"date":"2022-05-24T11:25:41","date_gmt":"2022-05-24T09:25:41","guid":{"rendered":"https:\/\/devbloomppm.wpengine.com\/?p=2802"},"modified":"2022-05-31T17:38:41","modified_gmt":"2022-05-31T15:38:41","slug":"bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre","status":"publish","type":"post","link":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/","title":{"rendered":"BASH UNIX \u2013 Alimentation d&rsquo;un fichier INI \u00e0 partir d&rsquo;un autre"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"2802\" class=\"elementor elementor-2802\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-725e085 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"725e085\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7a06bdb\" data-id=\"7a06bdb\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-b6c83ad elementor-widget elementor-widget-heading\" data-id=\"b6c83ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">BASH UNIX \u2013 Alimentation d'un fichier INI \u00e0 partir d'un autre<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-22f5647 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"22f5647\" data-element_type=\"section\" data-e-type=\"section\" data-settings=\"{&quot;stretch_section&quot;:&quot;section-stretched&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e69c542\" data-id=\"e69c542\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-417ba0a elementor-widget elementor-widget-text-editor\" data-id=\"417ba0a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Voici une fonction en BASH permettant le remplacement d\u2019un param\u00e8tre contenu dans un fichier .INI par la valeur de ce param\u00e8tre r\u00e9cup\u00e9r\u00e9 dans un deuxi\u00e8me fichier.<\/p><p>Ce type de fonction peut-\u00eatre utilis\u00e9 dans l\u2019installation automatis\u00e9e d\u2019une applications sous UNIX (nous l\u2019utilisons par exemple pour nos clients dans l\u2019alimentation du fichier opx2.ini \u00e0 partir de database.ini pour le logiciel P5 de Planisware).<\/p><p><span style=\"color: #993366;\">#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013<\/span><br \/><span style=\"color: #993366;\"># Fonction _ReplaceIni : Remplace une chaine dans un fichier .ini<\/span><br \/><span style=\"color: #993366;\">#\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2014\u2013<\/span><br \/><span style=\"color: #993366;\">function _ReplaceIni<\/span><br \/><span style=\"color: #993366;\">{<\/span><br \/><span style=\"color: #993366;\">typeset _IniInFile= \u00bb$1\u2033 # Nom du fichier ini<\/span><br \/><span style=\"color: #993366;\">typeset _IniOutFile= \u00bb$2\u2033 # Fichier de sortie<\/span><br \/><span style=\"color: #993366;\">typeset _IniStr= \u00bb$3\u2033 # Chaine a rechercher<\/span><br \/><span style=\"color: #993366;\">typeset _IniSear= \u00bb$4\u2033 # Valeur a remplacer<\/span><br \/><span style=\"color: #993366;\">typeset _IniRepl= \u00bb # Valeur trouvee<\/span><br \/><span style=\"color: #993366;\">typeset _IniOutContent= \u00bb # Contenu du fichier de sortie<\/span><br \/><span style=\"color: #993366;\">if [[ -s \u00ab ${_IniInFile} \u00bb ]] &amp;&amp; [[ -n \u00ab ${_IniStr} \u00bb ]]<\/span><br \/><span style=\"color: #993366;\">then<\/span><br \/><span style=\"color: #993366;\"># Extraire le contenu de la ligne de definition<\/span><br \/><span style=\"color: #993366;\">_IniRepl=$(egrep \u00ab :${_IniStr} \u00bb ${_IniInFile} | cut -d\u2019:\u2019 -f2-)<\/span><br \/><span style=\"color: #993366;\">fi<\/span><br \/><span style=\"color: #993366;\"># Affichage de la valeur recuperee<\/span><br \/><span style=\"color: #993366;\">echo \u00ab Alimentation de ${_IniRepl} \u00bb<\/span><br \/><span style=\"color: #993366;\"># Remplacement de la ligne dans le fichier .ini<\/span><br \/><span style=\"color: #993366;\">_IniOutContent=$(sed \u00ab s\/${_IniSear}\/${_IniRepl}\/g \u00bb ${_IniOutFile})# Vidage du fichier de sortie<\/span><br \/><span style=\"color: #993366;\">&gt; ${_IniOutFile}# Le contenu est ajoute au fichier de sortie<\/span><br \/><span style=\"color: #993366;\">echo \u00ab ${_IniOutContent} \u00bb &gt;&gt; ${_IniOutFile}<\/span><br \/><span style=\"color: #993366;\">}<\/span><\/p><hr \/><p>Voici un exemple d\u2019appel de cette fonction pour l\u2019alimentation du fichier opx2.ini \u00e0 partir de database.ini :<\/p><p><span style=\"color: #993366;\"># Exemple d\u2019utilisation pour OPX2<\/span><br \/><span style=\"color: #993366;\">_ReplaceIni \u00ab \/\u2026\/OPX2Modules\/database.ini \u00bb \u00ab \/\u2026\/OPX2HttpRoot\/webconf\/opx2.ini \u00bb \u00ab database-type \u00bb \u00ab database-type :ISTYPE \u00bb<\/span><\/p><hr \/><p>\u00a0<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>BASH UNIX \u2013 Alimentation d&rsquo;un fichier INI \u00e0 partir d&rsquo;un autre Voici une fonction en BASH permettant le remplacement d\u2019un param\u00e8tre contenu dans un fichier .INI par la valeur de ce param\u00e8tre r\u00e9cup\u00e9r\u00e9 dans un deuxi\u00e8me fichier. Ce type de fonction peut-\u00eatre utilis\u00e9 dans l\u2019installation automatis\u00e9e d\u2019une applications sous UNIX (nous l\u2019utilisons par exemple pour&hellip;&nbsp;<a href=\"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/\" rel=\"bookmark\">Lire la suite &raquo;<span class=\"screen-reader-text\">BASH UNIX \u2013 Alimentation d&rsquo;un fichier INI \u00e0 partir d&rsquo;un autre<\/span><\/a><\/p>\n","protected":false},"author":5,"featured_media":1100,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"left","neve_meta_author_avatar":"","neve_post_elements_order":"[\"meta\",\"thumbnail\",\"content\",\"tags\",\"comments\"]","neve_meta_disable_header":"off","neve_meta_disable_footer":"","neve_meta_disable_title":"","_themeisle_gutenberg_block_has_review":false,"cybocfi_hide_featured_image":"yes","footnotes":""},"categories":[9],"tags":[],"class_list":["post-2802","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-non-classifiee"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.9 (Yoast SEO v27.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>BASH UNIX \u2013 Alimentation d&#039;un fichier INI \u00e0 partir d&#039;un autre - BLOOM PPM<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/\"},\"author\":{\"name\":\"Antoine Hirschenhahn\",\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/#\\\/schema\\\/person\\\/beb0bf75e386466a086d6a396e9112b7\"},\"headline\":\"BASH UNIX \u2013 Alimentation d&rsquo;un fichier INI \u00e0 partir d&rsquo;un autre\",\"datePublished\":\"2022-05-24T09:25:41+00:00\",\"dateModified\":\"2022-05-31T15:38:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/\"},\"wordCount\":245,\"publisher\":{\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bloomppm.com\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/planisware-logo.png\",\"articleSection\":[\"Non classifi\u00e9(e)\"],\"inLanguage\":\"fr-FR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/\",\"url\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/\",\"name\":\"BASH UNIX \u2013 Alimentation d'un fichier INI \u00e0 partir d'un autre - BLOOM PPM\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/bloomppm.com\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/planisware-logo.png\",\"datePublished\":\"2022-05-24T09:25:41+00:00\",\"dateModified\":\"2022-05-31T15:38:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"BASH UNIX \u2013 Alimentation d&#8217;un fichier INI \u00e0 partir d&#8217;un autre\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/\",\"name\":\"BLOOM PPM\",\"description\":\"We make your projects grow\",\"publisher\":{\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/#organization\",\"name\":\"Bloom PPM\",\"url\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/bloomppm.com\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/Blue_without_background.png\",\"contentUrl\":\"https:\\\/\\\/bloomppm.com\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/Blue_without_background.png\",\"width\":602,\"height\":204,\"caption\":\"Bloom PPM\"},\"image\":{\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/bloomppm\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/#\\\/schema\\\/person\\\/beb0bf75e386466a086d6a396e9112b7\",\"name\":\"Antoine Hirschenhahn\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e6ee81cbc975109949822918ee666922009c32622b2da432a1a3904c52375d60?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e6ee81cbc975109949822918ee666922009c32622b2da432a1a3904c52375d60?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e6ee81cbc975109949822918ee666922009c32622b2da432a1a3904c52375d60?s=96&d=mm&r=g\",\"caption\":\"Antoine Hirschenhahn\"},\"url\":\"https:\\\/\\\/bloomppm.com\\\/fr\\\/author\\\/antoine-hirschenhahnbloomppm-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"BASH UNIX \u2013 Alimentation d'un fichier INI \u00e0 partir d'un autre - BLOOM PPM","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/#article","isPartOf":{"@id":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/"},"author":{"name":"Antoine Hirschenhahn","@id":"https:\/\/bloomppm.com\/fr\/#\/schema\/person\/beb0bf75e386466a086d6a396e9112b7"},"headline":"BASH UNIX \u2013 Alimentation d&rsquo;un fichier INI \u00e0 partir d&rsquo;un autre","datePublished":"2022-05-24T09:25:41+00:00","dateModified":"2022-05-31T15:38:41+00:00","mainEntityOfPage":{"@id":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/"},"wordCount":245,"publisher":{"@id":"https:\/\/bloomppm.com\/fr\/#organization"},"image":{"@id":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/#primaryimage"},"thumbnailUrl":"https:\/\/bloomppm.com\/wp-content\/uploads\/2020\/10\/planisware-logo.png","articleSection":["Non classifi\u00e9(e)"],"inLanguage":"fr-FR"},{"@type":"WebPage","@id":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/","url":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/","name":"BASH UNIX \u2013 Alimentation d'un fichier INI \u00e0 partir d'un autre - BLOOM PPM","isPartOf":{"@id":"https:\/\/bloomppm.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/#primaryimage"},"image":{"@id":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/#primaryimage"},"thumbnailUrl":"https:\/\/bloomppm.com\/wp-content\/uploads\/2020\/10\/planisware-logo.png","datePublished":"2022-05-24T09:25:41+00:00","dateModified":"2022-05-31T15:38:41+00:00","breadcrumb":{"@id":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/bloomppm.com\/fr\/bash-unix-alimentation-dun-fichier-ini-a-partir-dun-autre\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bloomppm.com\/fr\/"},{"@type":"ListItem","position":2,"name":"BASH UNIX \u2013 Alimentation d&#8217;un fichier INI \u00e0 partir d&#8217;un autre"}]},{"@type":"WebSite","@id":"https:\/\/bloomppm.com\/fr\/#website","url":"https:\/\/bloomppm.com\/fr\/","name":"BLOOM PPM","description":"We make your projects grow","publisher":{"@id":"https:\/\/bloomppm.com\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bloomppm.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/bloomppm.com\/fr\/#organization","name":"Bloom PPM","url":"https:\/\/bloomppm.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/bloomppm.com\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/bloomppm.com\/wp-content\/uploads\/2020\/10\/Blue_without_background.png","contentUrl":"https:\/\/bloomppm.com\/wp-content\/uploads\/2020\/10\/Blue_without_background.png","width":602,"height":204,"caption":"Bloom PPM"},"image":{"@id":"https:\/\/bloomppm.com\/fr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/bloomppm\/"]},{"@type":"Person","@id":"https:\/\/bloomppm.com\/fr\/#\/schema\/person\/beb0bf75e386466a086d6a396e9112b7","name":"Antoine Hirschenhahn","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/secure.gravatar.com\/avatar\/e6ee81cbc975109949822918ee666922009c32622b2da432a1a3904c52375d60?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e6ee81cbc975109949822918ee666922009c32622b2da432a1a3904c52375d60?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e6ee81cbc975109949822918ee666922009c32622b2da432a1a3904c52375d60?s=96&d=mm&r=g","caption":"Antoine Hirschenhahn"},"url":"https:\/\/bloomppm.com\/fr\/author\/antoine-hirschenhahnbloomppm-com\/"}]}},"_links":{"self":[{"href":"https:\/\/bloomppm.com\/fr\/wp-json\/wp\/v2\/posts\/2802","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bloomppm.com\/fr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bloomppm.com\/fr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bloomppm.com\/fr\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/bloomppm.com\/fr\/wp-json\/wp\/v2\/comments?post=2802"}],"version-history":[{"count":0,"href":"https:\/\/bloomppm.com\/fr\/wp-json\/wp\/v2\/posts\/2802\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/bloomppm.com\/fr\/wp-json\/wp\/v2\/media\/1100"}],"wp:attachment":[{"href":"https:\/\/bloomppm.com\/fr\/wp-json\/wp\/v2\/media?parent=2802"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bloomppm.com\/fr\/wp-json\/wp\/v2\/categories?post=2802"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bloomppm.com\/fr\/wp-json\/wp\/v2\/tags?post=2802"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}