Cutter's Way

Cast (36)

  • Jeff Bridges

    Jeff Bridges

    Richard Bone

  • John Heard

    John Heard

    Alex Cutter

  • Lisa Eichhorn

    Lisa Eichhorn

    Maureen Cutter, 'Mo'

  • Stephen Elliott

    Stephen Elliott

    J. J. Cord

  • Arthur Rosenberg

    Arthur Rosenberg

    George Swanson

  • Nina van Pallandt

    Nina van Pallandt

    Woman in the Hotel

  • Ann Dusenberry

    Ann Dusenberry

    Valerie Duran

  • Patricia Donahue

    Patricia Donahue

    Mrs. Cord

  • Geraldine Baron

    Geraldine Baron

    Susie Swanson

  • Katherine Pass

    Katherine Pass

    Toyota Woman

  • Francis X. McCarthy

    Francis X. McCarthy

    Toyota Man

  • George Planco

    George Planco

    Toyota Cop

  • Jay Fletcher

    Jay Fletcher

    Cord Security Guard

  • George Dickerson

    George Dickerson

    Mortician

  • Jack Murdock

    Jack Murdock

    Concession Owner

  • Essex Smith

    Essex Smith

    Black #1

  • Rod Gist

    Rod Gist

    Black #2

  • Leonard Lightfoot

    Leonard Lightfoot

    Black #3

  • Julia Duffy

    Julia Duffy

    Young Girl

  • Randall Hicks

    Randall Hicks

    Young Man (as Randy Shepard)

  • Roy Hollis

    Roy Hollis

    Working Stiff

  • Billy Drago

    Billy Drago

    Garbage Man

  • Caesar Cordova

    Caesar Cordova

    Garbage Truck Driver

  • Jonathan Terry

    Jonathan Terry

    Police Captain (as Jon Terry)

  • William Pelt

    William Pelt

    Detective #1

  • Ron Marcroft

    Ron Marcroft

    Detective #2

  • Ted White

    Ted White

    Guard #1

  • Tony Epper

    Tony Epper

    Guard #2

  • Andy Epper

    Andy Epper

    Guard #3

  • Chris Howell

    Chris Howell

    Guard #4

  • H.P. Evetts

    H.P. Evetts

    Guard #5

  • Ron Burke

    Ron Burke

    Guard #6

  • Dan Pattarson

    Dan Pattarson

    Derelict (uncredited)

  • Fox Purtill

    Fox Purtill

    Kid on Skateboard (uncredited)

  • Paul Thomas

    Paul Thomas

    Man at Dive Bar (uncredited)

  • Mark Valenti

    Mark Valenti

    Party Guest (uncredited)

Crew (63)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Cutter's Way

Cast (36)

  • Jeff Bridges

    Jeff Bridges

    Richard Bone

  • John Heard

    John Heard

    Alex Cutter

  • Lisa Eichhorn

    Lisa Eichhorn

    Maureen Cutter, 'Mo'

  • Stephen Elliott

    Stephen Elliott

    J. J. Cord

  • Arthur Rosenberg

    Arthur Rosenberg

    George Swanson

  • Nina van Pallandt

    Nina van Pallandt

    Woman in the Hotel

  • Ann Dusenberry

    Ann Dusenberry

    Valerie Duran

  • Patricia Donahue

    Patricia Donahue

    Mrs. Cord

  • Geraldine Baron

    Geraldine Baron

    Susie Swanson

  • Katherine Pass

    Katherine Pass

    Toyota Woman

  • Francis X. McCarthy

    Francis X. McCarthy

    Toyota Man

  • George Planco

    George Planco

    Toyota Cop

  • Jay Fletcher

    Jay Fletcher

    Cord Security Guard

  • George Dickerson

    George Dickerson

    Mortician

  • Jack Murdock

    Jack Murdock

    Concession Owner

  • Essex Smith

    Essex Smith

    Black #1

  • Rod Gist

    Rod Gist

    Black #2

  • Leonard Lightfoot

    Leonard Lightfoot

    Black #3

  • Julia Duffy

    Julia Duffy

    Young Girl

  • Randall Hicks

    Randall Hicks

    Young Man (as Randy Shepard)

  • Roy Hollis

    Roy Hollis

    Working Stiff

  • Billy Drago

    Billy Drago

    Garbage Man

  • Caesar Cordova

    Caesar Cordova

    Garbage Truck Driver

  • Jonathan Terry

    Jonathan Terry

    Police Captain (as Jon Terry)

  • William Pelt

    William Pelt

    Detective #1

  • Ron Marcroft

    Ron Marcroft

    Detective #2

  • Ted White

    Ted White

    Guard #1

  • Tony Epper

    Tony Epper

    Guard #2

  • Andy Epper

    Andy Epper

    Guard #3

  • Chris Howell

    Chris Howell

    Guard #4

  • H.P. Evetts

    H.P. Evetts

    Guard #5

  • Ron Burke

    Ron Burke

    Guard #6

  • Dan Pattarson

    Dan Pattarson

    Derelict (uncredited)

  • Fox Purtill

    Fox Purtill

    Kid on Skateboard (uncredited)

  • Paul Thomas

    Paul Thomas

    Man at Dive Bar (uncredited)

  • Mark Valenti

    Mark Valenti

    Party Guest (uncredited)

Crew (63)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Cutter's Way

Cast (36)

  • Jeff Bridges

    Jeff Bridges

    Richard Bone

  • John Heard

    John Heard

    Alex Cutter

  • Lisa Eichhorn

    Lisa Eichhorn

    Maureen Cutter, 'Mo'

  • Stephen Elliott

    Stephen Elliott

    J. J. Cord

  • Arthur Rosenberg

    Arthur Rosenberg

    George Swanson

  • Nina van Pallandt

    Nina van Pallandt

    Woman in the Hotel

  • Ann Dusenberry

    Ann Dusenberry

    Valerie Duran

  • Patricia Donahue

    Patricia Donahue

    Mrs. Cord

  • Geraldine Baron

    Geraldine Baron

    Susie Swanson

  • Katherine Pass

    Katherine Pass

    Toyota Woman

  • Francis X. McCarthy

    Francis X. McCarthy

    Toyota Man

  • George Planco

    George Planco

    Toyota Cop

  • Jay Fletcher

    Jay Fletcher

    Cord Security Guard

  • George Dickerson

    George Dickerson

    Mortician

  • Jack Murdock

    Jack Murdock

    Concession Owner

  • Essex Smith

    Essex Smith

    Black #1

  • Rod Gist

    Rod Gist

    Black #2

  • Leonard Lightfoot

    Leonard Lightfoot

    Black #3

  • Julia Duffy

    Julia Duffy

    Young Girl

  • Randall Hicks

    Randall Hicks

    Young Man (as Randy Shepard)

  • Roy Hollis

    Roy Hollis

    Working Stiff

  • Billy Drago

    Billy Drago

    Garbage Man

  • Caesar Cordova

    Caesar Cordova

    Garbage Truck Driver

  • Jonathan Terry

    Jonathan Terry

    Police Captain (as Jon Terry)

  • William Pelt

    William Pelt

    Detective #1

  • Ron Marcroft

    Ron Marcroft

    Detective #2

  • Ted White

    Ted White

    Guard #1

  • Tony Epper

    Tony Epper

    Guard #2

  • Andy Epper

    Andy Epper

    Guard #3

  • Chris Howell

    Chris Howell

    Guard #4

  • H.P. Evetts

    H.P. Evetts

    Guard #5

  • Ron Burke

    Ron Burke

    Guard #6

  • Dan Pattarson

    Dan Pattarson

    Derelict (uncredited)

  • Fox Purtill

    Fox Purtill

    Kid on Skateboard (uncredited)

  • Paul Thomas

    Paul Thomas

    Man at Dive Bar (uncredited)

  • Mark Valenti

    Mark Valenti

    Party Guest (uncredited)

Crew (63)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Cutter's Way

Cast (36)

  • Jeff Bridges

    Jeff Bridges

    Richard Bone

  • John Heard

    John Heard

    Alex Cutter

  • Lisa Eichhorn

    Lisa Eichhorn

    Maureen Cutter, 'Mo'

  • Stephen Elliott

    Stephen Elliott

    J. J. Cord

  • Arthur Rosenberg

    Arthur Rosenberg

    George Swanson

  • Nina van Pallandt

    Nina van Pallandt

    Woman in the Hotel

  • Ann Dusenberry

    Ann Dusenberry

    Valerie Duran

  • Patricia Donahue

    Patricia Donahue

    Mrs. Cord

  • Geraldine Baron

    Geraldine Baron

    Susie Swanson

  • Katherine Pass

    Katherine Pass

    Toyota Woman

  • Francis X. McCarthy

    Francis X. McCarthy

    Toyota Man

  • George Planco

    George Planco

    Toyota Cop

  • Jay Fletcher

    Jay Fletcher

    Cord Security Guard

  • George Dickerson

    George Dickerson

    Mortician

  • Jack Murdock

    Jack Murdock

    Concession Owner

  • Essex Smith

    Essex Smith

    Black #1

  • Rod Gist

    Rod Gist

    Black #2

  • Leonard Lightfoot

    Leonard Lightfoot

    Black #3

  • Julia Duffy

    Julia Duffy

    Young Girl

  • Randall Hicks

    Randall Hicks

    Young Man (as Randy Shepard)

  • Roy Hollis

    Roy Hollis

    Working Stiff

  • Billy Drago

    Billy Drago

    Garbage Man

  • Caesar Cordova

    Caesar Cordova

    Garbage Truck Driver

  • Jonathan Terry

    Jonathan Terry

    Police Captain (as Jon Terry)

  • William Pelt

    William Pelt

    Detective #1

  • Ron Marcroft

    Ron Marcroft

    Detective #2

  • Ted White

    Ted White

    Guard #1

  • Tony Epper

    Tony Epper

    Guard #2

  • Andy Epper

    Andy Epper

    Guard #3

  • Chris Howell

    Chris Howell

    Guard #4

  • H.P. Evetts

    H.P. Evetts

    Guard #5

  • Ron Burke

    Ron Burke

    Guard #6

  • Dan Pattarson

    Dan Pattarson

    Derelict (uncredited)

  • Fox Purtill

    Fox Purtill

    Kid on Skateboard (uncredited)

  • Paul Thomas

    Paul Thomas

    Man at Dive Bar (uncredited)

  • Mark Valenti

    Mark Valenti

    Party Guest (uncredited)

Crew (63)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Cutter's Way

Cast (36)

  • Jeff Bridges

    Jeff Bridges

    Richard Bone

  • John Heard

    John Heard

    Alex Cutter

  • Lisa Eichhorn

    Lisa Eichhorn

    Maureen Cutter, 'Mo'

  • Stephen Elliott

    Stephen Elliott

    J. J. Cord

  • Arthur Rosenberg

    Arthur Rosenberg

    George Swanson

  • Nina van Pallandt

    Nina van Pallandt

    Woman in the Hotel

  • Ann Dusenberry

    Ann Dusenberry

    Valerie Duran

  • Patricia Donahue

    Patricia Donahue

    Mrs. Cord

  • Geraldine Baron

    Geraldine Baron

    Susie Swanson

  • Katherine Pass

    Katherine Pass

    Toyota Woman

  • Francis X. McCarthy

    Francis X. McCarthy

    Toyota Man

  • George Planco

    George Planco

    Toyota Cop

  • Jay Fletcher

    Jay Fletcher

    Cord Security Guard

  • George Dickerson

    George Dickerson

    Mortician

  • Jack Murdock

    Jack Murdock

    Concession Owner

  • Essex Smith

    Essex Smith

    Black #1

  • Rod Gist

    Rod Gist

    Black #2

  • Leonard Lightfoot

    Leonard Lightfoot

    Black #3

  • Julia Duffy

    Julia Duffy

    Young Girl

  • Randall Hicks

    Randall Hicks

    Young Man (as Randy Shepard)

  • Roy Hollis

    Roy Hollis

    Working Stiff

  • Billy Drago

    Billy Drago

    Garbage Man

  • Caesar Cordova

    Caesar Cordova

    Garbage Truck Driver

  • Jonathan Terry

    Jonathan Terry

    Police Captain (as Jon Terry)

  • William Pelt

    William Pelt

    Detective #1

  • Ron Marcroft

    Ron Marcroft

    Detective #2

  • Ted White

    Ted White

    Guard #1

  • Tony Epper

    Tony Epper

    Guard #2

  • Andy Epper

    Andy Epper

    Guard #3

  • Chris Howell

    Chris Howell

    Guard #4

  • H.P. Evetts

    H.P. Evetts

    Guard #5

  • Ron Burke

    Ron Burke

    Guard #6

  • Dan Pattarson

    Dan Pattarson

    Derelict (uncredited)

  • Fox Purtill

    Fox Purtill

    Kid on Skateboard (uncredited)

  • Paul Thomas

    Paul Thomas

    Man at Dive Bar (uncredited)

  • Mark Valenti

    Mark Valenti

    Party Guest (uncredited)

Crew (63)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Cutter's Way

Cast (36)

  • Jeff Bridges

    Jeff Bridges

    Richard Bone

  • John Heard

    John Heard

    Alex Cutter

  • Lisa Eichhorn

    Lisa Eichhorn

    Maureen Cutter, 'Mo'

  • Stephen Elliott

    Stephen Elliott

    J. J. Cord

  • Arthur Rosenberg

    Arthur Rosenberg

    George Swanson

  • Nina van Pallandt

    Nina van Pallandt

    Woman in the Hotel

  • Ann Dusenberry

    Ann Dusenberry

    Valerie Duran

  • Patricia Donahue

    Patricia Donahue

    Mrs. Cord

  • Geraldine Baron

    Geraldine Baron

    Susie Swanson

  • Katherine Pass

    Katherine Pass

    Toyota Woman

  • Francis X. McCarthy

    Francis X. McCarthy

    Toyota Man

  • George Planco

    George Planco

    Toyota Cop

  • Jay Fletcher

    Jay Fletcher

    Cord Security Guard

  • George Dickerson

    George Dickerson

    Mortician

  • Jack Murdock

    Jack Murdock

    Concession Owner

  • Essex Smith

    Essex Smith

    Black #1

  • Rod Gist

    Rod Gist

    Black #2

  • Leonard Lightfoot

    Leonard Lightfoot

    Black #3

  • Julia Duffy

    Julia Duffy

    Young Girl

  • Randall Hicks

    Randall Hicks

    Young Man (as Randy Shepard)

  • Roy Hollis

    Roy Hollis

    Working Stiff

  • Billy Drago

    Billy Drago

    Garbage Man

  • Caesar Cordova

    Caesar Cordova

    Garbage Truck Driver

  • Jonathan Terry

    Jonathan Terry

    Police Captain (as Jon Terry)

  • William Pelt

    William Pelt

    Detective #1

  • Ron Marcroft

    Ron Marcroft

    Detective #2

  • Ted White

    Ted White

    Guard #1

  • Tony Epper

    Tony Epper

    Guard #2

  • Andy Epper

    Andy Epper

    Guard #3

  • Chris Howell

    Chris Howell

    Guard #4

  • H.P. Evetts

    H.P. Evetts

    Guard #5

  • Ron Burke

    Ron Burke

    Guard #6

  • Dan Pattarson

    Dan Pattarson

    Derelict (uncredited)

  • Fox Purtill

    Fox Purtill

    Kid on Skateboard (uncredited)

  • Paul Thomas

    Paul Thomas

    Man at Dive Bar (uncredited)

  • Mark Valenti

    Mark Valenti

    Party Guest (uncredited)

Crew (63)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
Cutter's Way

Cast (36)

  • Jeff Bridges

    Jeff Bridges

    Richard Bone

  • John Heard

    John Heard

    Alex Cutter

  • Lisa Eichhorn

    Lisa Eichhorn

    Maureen Cutter, 'Mo'

  • Stephen Elliott

    Stephen Elliott

    J. J. Cord

  • Arthur Rosenberg

    Arthur Rosenberg

    George Swanson

  • Nina van Pallandt

    Nina van Pallandt

    Woman in the Hotel

  • Ann Dusenberry

    Ann Dusenberry

    Valerie Duran

  • Patricia Donahue

    Patricia Donahue

    Mrs. Cord

  • Geraldine Baron

    Geraldine Baron

    Susie Swanson

  • Katherine Pass

    Katherine Pass

    Toyota Woman

  • Francis X. McCarthy

    Francis X. McCarthy

    Toyota Man

  • George Planco

    George Planco

    Toyota Cop

  • Jay Fletcher

    Jay Fletcher

    Cord Security Guard

  • George Dickerson

    George Dickerson

    Mortician

  • Jack Murdock

    Jack Murdock

    Concession Owner

  • Essex Smith

    Essex Smith

    Black #1

  • Rod Gist

    Rod Gist

    Black #2

  • Leonard Lightfoot

    Leonard Lightfoot

    Black #3

  • Julia Duffy

    Julia Duffy

    Young Girl

  • Randall Hicks

    Randall Hicks

    Young Man (as Randy Shepard)

  • Roy Hollis

    Roy Hollis

    Working Stiff

  • Billy Drago

    Billy Drago

    Garbage Man

  • Caesar Cordova

    Caesar Cordova

    Garbage Truck Driver

  • Jonathan Terry

    Jonathan Terry

    Police Captain (as Jon Terry)

  • William Pelt

    William Pelt

    Detective #1

  • Ron Marcroft

    Ron Marcroft

    Detective #2

  • Ted White

    Ted White

    Guard #1

  • Tony Epper

    Tony Epper

    Guard #2

  • Andy Epper

    Andy Epper

    Guard #3

  • Chris Howell

    Chris Howell

    Guard #4

  • H.P. Evetts

    H.P. Evetts

    Guard #5

  • Ron Burke

    Ron Burke

    Guard #6

  • Dan Pattarson

    Dan Pattarson

    Derelict (uncredited)

  • Fox Purtill

    Fox Purtill

    Kid on Skateboard (uncredited)

  • Paul Thomas

    Paul Thomas

    Man at Dive Bar (uncredited)

  • Mark Valenti

    Mark Valenti

    Party Guest (uncredited)

Crew (63)