1 2 3 4 5 6 7 8 9
#!/bin/sh for i in "$@"; do if ! [ -e "$i" ]; then continue fi gtk-update-icon-cache -q -t -f $i done