Created
January 26, 2023 19:05
-
-
Save maxice8/c9120e3758a76a4e45c454ee3dfb1d9d to your computer and use it in GitHub Desktop.
find directories holding mission icons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for file in gfx/interface/missions/** | |
[ -d $file ] || continue | |
for f in $file/* | |
test -f $f | |
end || continue | |
echo $file | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment