sed on davidchua https://dchua.com/tags/sed/ Recent content in sed on davidchua Hugo -- gohugo.io en-us Sun, 19 Sep 2021 07:44:01 +0000 Capturing Groups in Sed https://dchua.com/posts/2021-09-19-capturing-groups-in-sed/ Sun, 19 Sep 2021 07:44:01 +0000 https://dchua.com/posts/2021-09-19-capturing-groups-in-sed/ While migrating this blog from Jekyll to Hugo, I found I needed to replace all my old markdown posts which has my title params using single-quotes which Hugo does not appreciate, to double-quotes. For example, I have the following across multiple files (over 200+ files) --- title: 'abcdefg' tags: - new - stuff --- And I needed to replace title: 'abcdefgh' with title: "abcdefgh". To do that, I’m going to use sed because its going to be terribly painful to do this manually.