1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-28 19:47:23 +01:00

Fixed SC2006: Use $(...) notation instead of legacy backticks ....

This commit is contained in:
Teal Dulcet
2023-12-21 06:15:50 -08:00
parent 8e4e9add78
commit 7655a7688c
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# Use this script to make an archive of the contents of all
# of the configuration files we edit with editconf.py.
for fn in `grep -hr editconf.py setup | sed "s/tools\/editconf.py //" | sed "s/ .*//" | sort | uniq`; do
for fn in $(grep -hr editconf.py setup | sed "s/tools\/editconf.py //" | sed "s/ .*//" | sort | uniq); do
echo ======================================================================
echo $fn
echo ======================================================================