Make the script executable
[backups/.git] / scripts / find-cmd.sh
1 #!/bin/sh
2
3 [ $# == 1 ] || exit 1
4
5 {
6   for type in d f l; do
7     find $1 -type $type -printf "$type %#m %u %g %s %CY%Cm%Cd%CH%CM%CS 0 %p\0"
8   done
9 }