HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //sbin/update-icon-caches
#!/bin/sh

case "$1" in
    ""|-h|--help)
        echo "Usage: $0 directory [ ... ]"
        exit 1
        ;;
esac

for dir in "$@"; do
    if [ ! -d "$dir" ]; then
        continue
    fi
    if [ -f "$dir"/index.theme ]; then
        # Generate or regenerate the cache    
        if ! gtk-update-icon-cache --force --quiet "$dir"; then
            echo "WARNING: icon cache generation failed for $dir"
        fi
    else
        # No more index.theme, remove the cache if it exists
        rm -f "$dir"/icon-theme.cache
        rmdir -p --ignore-fail-on-non-empty "$dir"
    fi
done

exit 0