mirror of
https://github.com/elliotnunn/ToolboxToolbox.git
synced 2025-01-19 18:30:08 +00:00
9 lines
172 B
Bash
Executable File
9 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find "$1" -iname '*.o' -type f | while read -r x; do
|
|
if [ ! -e "$x.dmp" ] || [ "$x" -nt "$x.dmp" ]; then
|
|
echo "$x"
|
|
~/MacSrc/dump "$x" > "$x.dmp"
|
|
fi
|
|
done
|