Thanks for the tip!

Is there a way for me to add a file to a group without executing a command?

In my case, I'm only using the Tupdefault.lua file to automatically 
traverse 
subdirectories; if a call to "tup.glob(*)" from "data/Tupfile.lua" returned 
files
in subdirectories, that would solve my problem exactly. Since it doesn't,
I'd like to have a rule that only added the files to the group without 
calling
any kind of command.

Here's what I'm trying to accomplish in bash:
#!/usr/bin/env bash
for D in *; do [ -d "${D}" ] && zip -jr "${D}.zip" "${D}"; done

However, I'd like the files in groups so I may do additional processing 
based on extension.

-- 
-- 
tup-users mailing list
email: [email protected]
unsubscribe: [email protected]
options: http://groups.google.com/group/tup-users?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"tup-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to