From 83d862e2b688f1de9c56231db963f6594a48c37a Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Thu, 16 May 2024 17:50:10 +0200 Subject: reduce quoting hell --- it_url.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_url.class b/it_url.class index 8001469..4d762f4 100644 --- a/it_url.class +++ b/it_url.class @@ -703,7 +703,7 @@ static function get_cache($p = array()) { it::file_put($p['cachedir'] . "/cleaned", ""); # touch could have permission problems $maxagemin = intval($p['maxage']/60); - exec("nohup bash -c 'cd {$p['cachedir']} && for i in ??; do sleep 20; ionice -c 3 find \"\$i\" -mmin +\"$maxagemin\" -type f -delete; done' /dev/null 2>&1 &"); + exec("nohup bash -c 'cd {$p['cachedir']} && for i in [0-9][0-9]; do sleep 20; ionice -c 3 find \$i -mmin +$maxagemin -type f -delete; done' /dev/null 2>&1 &"); } if (EDC('getcachelog')) -- cgit v1.2.3