File indexing completed on 2023-05-30 09:02:59
0001 #!/bin/bash 0002 0003 # ============================================================ 0004 # 0005 # This file is a part of digiKam project 0006 # http://www.digikam.org 0007 # 0008 # Date : 2022-12-26 0009 # Description : batch convert PNG to WEBP using ImageMagick 0010 # 0011 # SPDX-FileCopyrightText: 2021-2022 by Gilles Caulier <caulier dot gilles at googlemail dot com> 0012 # 0013 # SPDX-License-Identifier: BSD-3-Clause 0014 # 0015 # ============================================================ */ 0016 0017 for f in *.png; do convert "$f" $(basename "$f" | cut -d. -f1).webp ; done 0018 0019 rm -fr *.png 0020 0021 git add *.webp