Skip to content

Instantly share code, notes, and snippets.

@maxice8
Created January 26, 2023 19:05
Show Gist options
  • Save maxice8/c9120e3758a76a4e45c454ee3dfb1d9d to your computer and use it in GitHub Desktop.
Save maxice8/c9120e3758a76a4e45c454ee3dfb1d9d to your computer and use it in GitHub Desktop.
find directories holding mission icons
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