How do I restrict a Perforce sync operation to only those files in a specific changelist?

perforce

Solution

If you want to limit a sync to only the files in a specific changelist, you can do the following:

$> p4 sync @changelist,@changelist

E.g.

$> p4 sync @604286,@604286

Problem

I thought I could use P4 sync -f @Changelist# to sync only those files in Changelist#, but it is syncing the entire directory. How can I limit the sync to only the files in Changelist#?

Original source