1 2 3 4 5 6 7 8
#!/bin/sh for i in "$@"; do if [ -d "$i" ]; then update-mime-database "$i" > /dev/null 2>&1 fi done sync