keecode logokeecode
77

Permission Denied

Permission denied

Application

Exit Code Information

Exit Code

77

Name

Permission Denied

Category

Application

Usage Context

Insufficient permissions

Common Usage

Bash Script

#!/bin/bash

if [ condition ]; then
  echo "Permission Denied"
  exit 77
fi

Check Exit Code

./script.sh
echo $?  # Prints the exit code

# Check if exit code matches
if [ $? -eq 77 ]; then
  echo "Permission Denied"
fi

Node.js/JavaScript

// Exit with code 77
process.exit(77);

// Or throw error that results in exit code
if (error) {
  console.error('Permission Denied');
  process.exit(77);
}

Python

import sys

# Exit with code 77
if error:
    print("Permission Denied")
    sys.exit(77)