perforce - P4, How to find changelist user from a given changelist? -


anybody knows how change list user given changelist(say, #12345)?
p4 describe -s #12345
give output this:

change #12345 user@user_clientspec on 2010/07/26 10:26:29
affected files...

.......

is there command give user name. not client spec shows user@user_clientspec.

appreciate help.

thanks, tom

p4 change -o 12345 | grep ^user: 

or, if you're on recent version of 'p4' command line:

p4 -f "%user%" -ztag change -o 12345 

Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -