NBash

Форк
0
7 строк · 956.0 Байт
1
Asterisk (*) wildcard: Matches any sequence of characters, including no characters. For example, *.txt will match all files with a .txt extension in the current directory.
2
Question mark (?) wildcard: Matches any single character. For example, file?.txt will match files like file1.txt, file2.txt, etc., where the question mark can be any single character. 
3
Square brackets ([ ]) wildcard: Matches any character within the specified range or set. For example, [abc].txt will match files named a.txt, b.txt, or c.txt, but not any other file. 
4
Negation (!) wildcard: Matches any file that does not belong to the specified range or set. For example, ![abc].txt will match files excluding a.txt, b.txt, and c.txt. 
5
Brace expansion ({ }) wildcard: Expands a sequence or set of strings. For example, file{1,2,3}.txt will match files like file1.txt, file2.txt, and file3.txt.
6

7
Read more at: https://ubuntuask.com/blog/how-to-use-wildcards-for-file-matching-in-bash

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.