You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
239 B
11 lines
239 B
#!/bin/sh -e
|
|
|
|
# SPDX-FileCopyrightText: 2025 crueter
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
FILES=$(find . src -maxdepth 3 -name cpmfile.json)
|
|
|
|
for file in $FILES; do
|
|
jq --indent 4 < $file > $file.new
|
|
mv $file.new $file
|
|
done
|