- Популярные видео
- Авто
- Видео-блоги
- ДТП, аварии
- Для маленьких
- Еда, напитки
- Животные
- Закон и право
- Знаменитости
- Игры
- Искусство
- Комедии
- Красота, мода
- Кулинария, рецепты
- Люди
- Мото
- Музыка
- Мультфильмы
- Наука, технологии
- Новости
- Образование
- Политика
- Праздники
- Приколы
- Природа
- Происшествия
- Путешествия
- Развлечения
- Ржач
- Семья
- Сериалы
- Спорт
- Стиль жизни
- ТВ передачи
- Танцы
- Технологии
- Товары
- Ужасы
- Фильмы
- Шоу-бизнес
- Юмор
How to List Files Without a Specific Character in Name Using Shell Commands
Discover how to effectively list files and directories in your shell environment while excluding names with specific characters like `p`. Follow this easy guide for various shell types.
---
This video is based on the question https://stackoverflow.com/q/64743259/ asked by the user 'T-FoxPL' ( https://stackoverflow.com/u/13901168/ ) and on the answer https://stackoverflow.com/a/64747647/ provided by the user 'Shawn' ( https://stackoverflow.com/u/9952196/ ) at 'Stack Overflow' website. Thanks to these great users and Stackexchange community for their contributions.
Visit these links for original content and any more details, such as alternate solutions, latest updates/developments on topic, comments, revision history etc. For example, the original title of the Question was: Listing files without specific character in name on shell
Also, Content (except music) licensed under CC BY-SA https://meta.stackexchange.com/help/licensing
The original Question post is licensed under the 'CC BY-SA 4.0' ( https://creativecommons.org/licenses/by-sa/4.0/ ) license, and the original Answer post is licensed under the 'CC BY-SA 4.0' ( https://creativecommons.org/licenses/by-sa/4.0/ ) license.
If anything seems off to you, please feel free to write me at vlogize [AT] gmail [DOT] com.
---
Listing Files Excluding a Specific Character in the Name on Shell
Have you ever found yourself in need of listing files or catalogs in your shell, but you want to exclude names containing a specific character? For instance, you might want to see all files that do not contain the character p. While this seems simple at first glance, it can be tricky due to the way shell commands interpret character patterns. In this post, we will dive into how to achieve this using different shell environments.
The Challenge
The main challenge arises when using basic globbing patterns in the shell. A common command you might try is:
[[See Video to Reveal this Text or Code Snippet]]
However, as many users quickly discover, this method is not effective. The reason? The character p can appear in various positions within filenames, making it difficult to use this pattern reliably.
Solutions for Different Shell Environments
How you tackle this problem can vary depending on the shell you are using. Below, we will explore methods for several popular shells including zsh, bash, tcsh, and ksh93.
Using Zsh
If you're using zsh, it requires the EXTENDED_GLOB option to be enabled. If it's not already enabled, you can turn it on with the following command:
[[See Video to Reveal this Text or Code Snippet]]
Once this option is active, you can use the following command to list files that do not include the letter p:
[[See Video to Reveal this Text or Code Snippet]]
Example Output:
[[See Video to Reveal this Text or Code Snippet]]
Using Bash
For bash, you need to enable the extglob option. You can do this using the command:
[[See Video to Reveal this Text or Code Snippet]]
After enabling extglob, you can run the command to exclude files with the character p:
[[See Video to Reveal this Text or Code Snippet]]
Example Output:
[[See Video to Reveal this Text or Code Snippet]]
Using Tcsh
In tcsh, the command is similar to zsh and does not typically require special options to be set. To exclude filenames with the letter p, you can simply use:
[[See Video to Reveal this Text or Code Snippet]]
Example Output:
[[See Video to Reveal this Text or Code Snippet]]
Using Ksh93
For users of ksh93, the approach is consistent with what we have discussed for bash and zsh. Make sure you apply similar globbing techniques like:
[[See Video to Reveal this Text or Code Snippet]]
Example Output:
[[See Video to Reveal this Text or Code Snippet]]
Conclusion
In conclusion, excluding files or directories based on specific characters in their names can be accomplished efficiently using the correct shell and options. By adjusting settings like EXTENDED_GLOB in zsh, extglob in bash, or straightforward commands in tcsh and ksh93, you can tailor your file listing as needed.
Try these commands in your shell environment and see how they work for you! Happy scripting!
Видео How to List Files Without a Specific Character in Name Using Shell Commands канала vlogize
---
This video is based on the question https://stackoverflow.com/q/64743259/ asked by the user 'T-FoxPL' ( https://stackoverflow.com/u/13901168/ ) and on the answer https://stackoverflow.com/a/64747647/ provided by the user 'Shawn' ( https://stackoverflow.com/u/9952196/ ) at 'Stack Overflow' website. Thanks to these great users and Stackexchange community for their contributions.
Visit these links for original content and any more details, such as alternate solutions, latest updates/developments on topic, comments, revision history etc. For example, the original title of the Question was: Listing files without specific character in name on shell
Also, Content (except music) licensed under CC BY-SA https://meta.stackexchange.com/help/licensing
The original Question post is licensed under the 'CC BY-SA 4.0' ( https://creativecommons.org/licenses/by-sa/4.0/ ) license, and the original Answer post is licensed under the 'CC BY-SA 4.0' ( https://creativecommons.org/licenses/by-sa/4.0/ ) license.
If anything seems off to you, please feel free to write me at vlogize [AT] gmail [DOT] com.
---
Listing Files Excluding a Specific Character in the Name on Shell
Have you ever found yourself in need of listing files or catalogs in your shell, but you want to exclude names containing a specific character? For instance, you might want to see all files that do not contain the character p. While this seems simple at first glance, it can be tricky due to the way shell commands interpret character patterns. In this post, we will dive into how to achieve this using different shell environments.
The Challenge
The main challenge arises when using basic globbing patterns in the shell. A common command you might try is:
[[See Video to Reveal this Text or Code Snippet]]
However, as many users quickly discover, this method is not effective. The reason? The character p can appear in various positions within filenames, making it difficult to use this pattern reliably.
Solutions for Different Shell Environments
How you tackle this problem can vary depending on the shell you are using. Below, we will explore methods for several popular shells including zsh, bash, tcsh, and ksh93.
Using Zsh
If you're using zsh, it requires the EXTENDED_GLOB option to be enabled. If it's not already enabled, you can turn it on with the following command:
[[See Video to Reveal this Text or Code Snippet]]
Once this option is active, you can use the following command to list files that do not include the letter p:
[[See Video to Reveal this Text or Code Snippet]]
Example Output:
[[See Video to Reveal this Text or Code Snippet]]
Using Bash
For bash, you need to enable the extglob option. You can do this using the command:
[[See Video to Reveal this Text or Code Snippet]]
After enabling extglob, you can run the command to exclude files with the character p:
[[See Video to Reveal this Text or Code Snippet]]
Example Output:
[[See Video to Reveal this Text or Code Snippet]]
Using Tcsh
In tcsh, the command is similar to zsh and does not typically require special options to be set. To exclude filenames with the letter p, you can simply use:
[[See Video to Reveal this Text or Code Snippet]]
Example Output:
[[See Video to Reveal this Text or Code Snippet]]
Using Ksh93
For users of ksh93, the approach is consistent with what we have discussed for bash and zsh. Make sure you apply similar globbing techniques like:
[[See Video to Reveal this Text or Code Snippet]]
Example Output:
[[See Video to Reveal this Text or Code Snippet]]
Conclusion
In conclusion, excluding files or directories based on specific characters in their names can be accomplished efficiently using the correct shell and options. By adjusting settings like EXTENDED_GLOB in zsh, extglob in bash, or straightforward commands in tcsh and ksh93, you can tailor your file listing as needed.
Try these commands in your shell environment and see how they work for you! Happy scripting!
Видео How to List Files Without a Specific Character in Name Using Shell Commands канала vlogize
Комментарии отсутствуют
Информация о видео
5 сентября 2025 г. 5:59:01
00:01:36
Другие видео канала






![Understanding [[prototype]] Slots: Why They Retain Old References in JavaScript](https://i.ytimg.com/vi/FeDfAaZViFk/default.jpg)














