I'm trying to only import 2 specific users (objects and all the roles/privileges granted to these users). I can't import the entire database as it is a development database and has a lot of test users and objects that I don't need in my production database...
export full with no data and import only Object definitions of the users you wanted with ignore=y option which grants all the privileges and roles to those users.
export userid/password full=y or users=user1,user2 and rows=n
import userid/password ignore=y
fromuser=user1,user2
touser=user1,user2
Bookmarks