Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
An Entity of Type: Thing, from Named Graph: http://dbpedia.org, within Data Space: dbpedia.org

In computer programming, glob (/ɡlɑːb/) patterns specify sets of filenames with wildcard characters. For example, the Unix Bash shell command mv *.txt textfiles/ moves (mv) all files with names ending in .txt from the current directory to the directory textfiles. Here, * is a wildcard standing for "any string of characters except /" and *.txt is a glob pattern. The other common wildcard is the question mark (?), which stands for one character. For example, mv ?.txt shorttextfiles/ will move all files named with a single character followed by .txt from the current directory to directory shorttextfiles, while ??.txt would match all files whose name consists of 2 characters followed by .txt.

Property Value
dbo:abstract
  • In computer programming, glob (/ɡlɑːb/) patterns specify sets of filenames with wildcard characters. For example, the Unix Bash shell command mv *.txt textfiles/ moves (mv) all files with names ending in .txt from the current directory to the directory textfiles. Here, * is a wildcard standing for "any string of characters except /" and *.txt is a glob pattern. The other common wildcard is the question mark (?), which stands for one character. For example, mv ?.txt shorttextfiles/ will move all files named with a single character followed by .txt from the current directory to directory shorttextfiles, while ??.txt would match all files whose name consists of 2 characters followed by .txt. In addition to matching filenames, globs are also used widely for matching arbitrary strings (wildcard matching). In this capacity a common interface is fnmatch. (en)
  • En programación de ordenadores glob es una abreviatura de global command, una librería escrita en lenguaje C y muy utilizada en entornos Unix y GNU/Linux.​ Se diferencia fácilmente de las expresiones regulares por su sencillez y sus diferentes equivalencias en cuanto a los caracteres comodines utilizados y su extenso uso fuera de su entorno. Su código fuente es ampliamente publicado por pertenecer a Software libre y cualquier persona puede consultarlo.​ Si bien dicha función tiene estrictas reglas de uso en programación, su utilidad es fácilmente comprensible para la mayoría de los programadores al punto tal que forma parte intrínseca del shell de muchos sistemas operativos (MS-DOS, GNU/Linux) e incluso otros lenguajes como SQL en su Lenguaje de manipulación de datos (DML Data Manipulation Language), Pascal y Python. (es)
  • Un glob pattern è una sintassi attraverso la quale si rappresenta un insieme di stringhe. È la sintassi tradizionalmente usata nelle shell testuali dei sistemi Unix e Unix-like, ma anche MS-DOS per effettuare l'espansione di nomi di file e directory, ed essa riprende in piccola parte quella delle espressioni regolari. (it)
  • 컴퓨터 프로그래밍에서, 특히 유닉스 계열 환경에서 글로브(glob) 패턴은 와일드카드 문자로 여러 파일 이름의 집합을 지정한다. 이를테면 유닉스 명령어 mv *.txt textfiles/은 현재 디렉터리의 .txt로 끝나는 이름의 모든 파일을 textfiles 디렉터리로 이동(mv)시킨다. 여기에서 *는 모든 문자열을 가리키는 와일드카드이고 *.txt는 글로브 패턴이다. 그 밖의 일반적인 와일드카드는 하나의 문자를 가리키는 물음표(?)이다. (ko)
  • グロブ(英: glob)とは主にUnix系環境において、ワイルドカードでファイル名のセットを指定するパターンのことである。例えば、UNIXのコマンド「mv *.xlsx 営業実績/」はカレントディレクトリから営業実績/ディレクトリへと.xlsxで終わる全てのファイルを移動する。ここで、*は「任意の文字列」を表すワイルドカードであり、*.xlsxはグロブである。*以外に一般的なワイルドカードは疑問符 (?) であり、これは任意の1文字を表す。 (ja)
  • glob é um termo utilizado no contexto de programação de computadores para descrever uma forma de casamento de padrões. Vários interpretadores de comandos, como por exemplo o bash no Unix, ele também é chamado de file globbing implementam a funcionalidade de glob para efetuar busca por arquivos através de scripts ou da linha de comando. Nas primeiras edições do Unix os interpretadores de comando eram incapazes de expandir caracteres curinga de um caminho para um arquivo. Por isso contavam com a ajuda do programa /etc/glob para realizar tal expansão. Várias linguagens de programação também estão munidas desta funcionalidade, como PHP, Python e Perl. (pt)
  • Inom programmering används globmönster för att specificera uppsättningar av filnamn med hjälp av jokertecken. Till exempel flyttar Bash-skalkommandot mv *.txt textfiles/ alla filer vars namn slutar på .txt från aktuell katalog till katalogen textfiles. I detta fall är * ett jokertecken som står för "alla teckensekvenser" och *.txt är ett globmönster. Ett annat vanligt jokertecken är frågetecknet (?) som står för ett enda tecken. Till exempel kommer mv ?.txt shorttextfiles/ att flytta alla filer där filnamnet består av ett enda tecken följt av .txt från aktuell katalog till katalogen shorttextfiles, medan ??.txt skulle matcha alla filer vars filnamn består av 2 tecken följt av .txt. Förutom att matcha filnamn används glob också i stor utsträckning för att matcha godtyckliga textsekvenser. För detta ändamål är fnmatch ett vanligt gränssnitt. (sv)
  • Glob jest to wzorzec określający jedno lub więcej dopasowań tekstu. Jest wykorzystywany szczególnie w systemach typu Unix, ale także w wierszu poleceń systemu Windows do dopasowywania nazw plików. (pl)
  • Шаблон поиска (англ. wildcard pattern, glob pattern) — метод описания поискового запроса с использованием метасимволов (символов-джокеров). (ru)
dbo:thumbnail
dbo:wikiPageID
  • 484117 (xsd:integer)
dbo:wikiPageLength
  • 20116 (xsd:nonNegativeInteger)
dbo:wikiPageRevisionID
  • 1122577150 (xsd:integer)
dbo:wikiPageWikiLink
dbp:cs1Dates
  • y (en)
dbp:date
  • July 2019 (en)
dbp:wikiPageUsesTemplate
dcterms:subject
rdfs:comment
  • Un glob pattern è una sintassi attraverso la quale si rappresenta un insieme di stringhe. È la sintassi tradizionalmente usata nelle shell testuali dei sistemi Unix e Unix-like, ma anche MS-DOS per effettuare l'espansione di nomi di file e directory, ed essa riprende in piccola parte quella delle espressioni regolari. (it)
  • 컴퓨터 프로그래밍에서, 특히 유닉스 계열 환경에서 글로브(glob) 패턴은 와일드카드 문자로 여러 파일 이름의 집합을 지정한다. 이를테면 유닉스 명령어 mv *.txt textfiles/은 현재 디렉터리의 .txt로 끝나는 이름의 모든 파일을 textfiles 디렉터리로 이동(mv)시킨다. 여기에서 *는 모든 문자열을 가리키는 와일드카드이고 *.txt는 글로브 패턴이다. 그 밖의 일반적인 와일드카드는 하나의 문자를 가리키는 물음표(?)이다. (ko)
  • グロブ(英: glob)とは主にUnix系環境において、ワイルドカードでファイル名のセットを指定するパターンのことである。例えば、UNIXのコマンド「mv *.xlsx 営業実績/」はカレントディレクトリから営業実績/ディレクトリへと.xlsxで終わる全てのファイルを移動する。ここで、*は「任意の文字列」を表すワイルドカードであり、*.xlsxはグロブである。*以外に一般的なワイルドカードは疑問符 (?) であり、これは任意の1文字を表す。 (ja)
  • Glob jest to wzorzec określający jedno lub więcej dopasowań tekstu. Jest wykorzystywany szczególnie w systemach typu Unix, ale także w wierszu poleceń systemu Windows do dopasowywania nazw plików. (pl)
  • Шаблон поиска (англ. wildcard pattern, glob pattern) — метод описания поискового запроса с использованием метасимволов (символов-джокеров). (ru)
  • In computer programming, glob (/ɡlɑːb/) patterns specify sets of filenames with wildcard characters. For example, the Unix Bash shell command mv *.txt textfiles/ moves (mv) all files with names ending in .txt from the current directory to the directory textfiles. Here, * is a wildcard standing for "any string of characters except /" and *.txt is a glob pattern. The other common wildcard is the question mark (?), which stands for one character. For example, mv ?.txt shorttextfiles/ will move all files named with a single character followed by .txt from the current directory to directory shorttextfiles, while ??.txt would match all files whose name consists of 2 characters followed by .txt. (en)
  • En programación de ordenadores glob es una abreviatura de global command, una librería escrita en lenguaje C y muy utilizada en entornos Unix y GNU/Linux.​ Se diferencia fácilmente de las expresiones regulares por su sencillez y sus diferentes equivalencias en cuanto a los caracteres comodines utilizados y su extenso uso fuera de su entorno. Su código fuente es ampliamente publicado por pertenecer a Software libre y cualquier persona puede consultarlo.​ (es)
  • glob é um termo utilizado no contexto de programação de computadores para descrever uma forma de casamento de padrões. Vários interpretadores de comandos, como por exemplo o bash no Unix, ele também é chamado de file globbing implementam a funcionalidade de glob para efetuar busca por arquivos através de scripts ou da linha de comando. Nas primeiras edições do Unix os interpretadores de comando eram incapazes de expandir caracteres curinga de um caminho para um arquivo. Por isso contavam com a ajuda do programa /etc/glob para realizar tal expansão. (pt)
  • Inom programmering används globmönster för att specificera uppsättningar av filnamn med hjälp av jokertecken. Till exempel flyttar Bash-skalkommandot mv *.txt textfiles/ alla filer vars namn slutar på .txt från aktuell katalog till katalogen textfiles. I detta fall är * ett jokertecken som står för "alla teckensekvenser" och *.txt är ett globmönster. Ett annat vanligt jokertecken är frågetecknet (?) som står för ett enda tecken. Till exempel kommer mv ?.txt shorttextfiles/ att flytta alla filer där filnamnet består av ett enda tecken följt av .txt från aktuell katalog till katalogen shorttextfiles, medan ??.txt skulle matcha alla filer vars filnamn består av 2 tecken följt av .txt. (sv)
rdfs:label
  • Glob (es)
  • Glob (programming) (en)
  • Glob pattern (it)
  • グロブ (ja)
  • 글로브 (프로그래밍) (ko)
  • Glob (programowanie) (pl)
  • Glob (pt)
  • Glob (programmering) (sv)
  • Шаблон поиска (ru)
owl:sameAs
prov:wasDerivedFrom
foaf:depiction
foaf:isPrimaryTopicOf
is dbo:wikiPageDisambiguates of
is dbo:wikiPageRedirects of
is dbo:wikiPageWikiLink of
is foaf:primaryTopic of
Powered by OpenLink Virtuoso    This material is Open Knowledge     W3C Semantic Web Technology     This material is Open Knowledge    Valid XHTML + RDFa
This content was extracted from Wikipedia and is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License