it's easy with sql*plus

spool rebuild_index.sql
select 'alter index '||index_name||' rebuild tablespace_idx;'
from user_indexes
/
spool off

then run rebuild_index.sql

of course this prob seems harder than a gui tool but you learn how to do it in UNIX for example