---
title: "Find Files with Uppercase Letters"
description: "Learn how to find files with uppercase letters in their names using the `find` command."
date: "2024-06-10"
tags: ["shell","find","uppercase"]
canonical: "/snippets/shell/find"
---

import { Code } from '@astrojs/starlight/components'
import Source from './find-uppercase-files.sh?raw'

## How can I find files with uppercase letters in their names

This can be quite handy for finding files that may cause issues on
case-insensitive file systems.

<Code code={Source} lang="sh" title="find-uppercase-files.sh" wrap />
