Redirect to current user page upon link click

Thank you so much for the responses. Using both of the ideas received I started to play a little with the code, although I was not sure what to do with them.

I came up with a solution that works very well for me, I created a new template in my theme called ‘redirect.php’.
At the very beginning of the page template I inserted the code found in Peter’s login Redirect.

$current_user = wp_get_current_user();
$redirect_to = admin_url();
$redirect_url = redirect_wrapper( $redirect_to, '', $current_user );
wp_redirect( $redirect_url );
die();

Then I added a link to that new template in regular html. When clicked, it automatically looks up the user, and sends the user to their page that is listed in Peter’s login redirect.

What you need for this obviously is; Peter’s login/redirect plugin, and to create your own blank template with the code snippet above.
Thanks again for everyone, it helped me realize where to look and what to put.