project-navigation
Personal tools

Author Topic: Suggestions for UFO2Map utility  (Read 10693 times)

Offline BTAxis

  • Administrator
  • PHALANX Commander
  • *******
  • Posts: 2607
    • View Profile
Re: Suggestions for UFO2Map utility
« Reply #15 on: May 17, 2008, 11:37:19 am »
I don't think ufo2map actually supports wildcards in its arguments, does it? Otherwise you could do something like
Code: [Select]
ufo2map base/maps/*.map -onlynewerand it'd be essentially the same as make maps. Except it'd have to be recursive too. And it wouldn't skip the prefabs.

Offline tchristney

  • Rookie
  • ***
  • Posts: 75
    • View Profile
Re: Suggestions for UFO2Map utility
« Reply #16 on: May 18, 2008, 11:35:51 pm »
Oh, you could also run

Code: [Select]
find base/maps -name *.map -exec ufo2map -onlynewer {} \;
but only if you are using something smart enough to support find.