About: Join (Unix)

An Entity of Type: military unit, from Named Graph: http://dbpedia.org, within Data Space: dbpedia.org

join is a command in Unix and Unix-like operating systems that merges the lines of two sorted text files based on the presence of a common field. It is similar to the join operator used in relational databases but operating on text files.

Property Value
dbo:abstract
  • join je unixový příkaz, který spojuje řádky dvou setříděných souborů na základě přítomnosti společného pole. Je to podobné jako operátor JOIN v relačních databázích, ale pracuje s textovými soubory. join bere jako vstup dva textové soubory a argumenty. Pokud není argument zadán, příkaz prohledává dva soubory a hledá dva řádky začínající na stejné první pole. Výstupem příkazu je společné slovo plus zbytky z obou řádků, tak jak je tomu v následujícím příkladu. soubor1: george jimkumar gunaware soubor2: albert marthageorge sophie Výstup příkazu join soubor1 soubor2: george jim sophie (cs)
  • join هو أمر في أنظمة التشغيل يونكس و شبيه يونكس التي تجمع بين السطور اثنين من فرز ملفات نصية على أساس وجود مشترك حقل (علم الحاسوب) . وهو مشابه لمشغل الصلة المستخدم في قواعد البيانات العلائقية ولكنه يعمل على ملفات نصية. (ar)
  • join (/bin/join) ist ein Computerprogramm zum Erzeugen einer Ausgabe aus zwei zusammengeführten (record-orientierten) Eingangsdatenströmen, ähnlich den verschiedenen Varianten der SQL-Operation JOIN. Als Input werden zwei bereits sortiert vorliegende Datenströme (Files, Ausgaben von Subprozessen, Ergebnisse von Prozesssubstitutionen oder sonstiger Input auf stdin) erwartet, die Ausgabe erfolgt auf stdout. Das Verhalten von join ist für UNIX-Systeme im Einzelnen durch den POSIX-Standard festgelegt, darüber hinaus gelten die allgemeinen Regeln für das Verhalten von Kommandozeilen-Utilities. Das Kommando ist auf UNIX-Systemen und anderen POSIX-konformen Systemen vorgeschrieben, auch viele Nonstandard-Betriebssysteme weisen ein gleich oder ähnlich arbeitendes Kommando auf. (de)
  • join es un comando presente en los sistemas operativos Unix-like que une las líneas de dos ficheros de texto plano si tienen el primer campo en común. Es similar a la sentencia JOIN usada en bases de datos relacionales pero opera en ficheros de texto. El comando join toma como entrada dos ficheros de texto y diferentes opciones. Si no se especifica ninguna opción, el comando busca un par de líneas en los dos ficheros que comienzan por el mismo campo (una secuencia de caracteres sin espacios) y muestra como salida una línea compuesta por el primer campo seguido del resto de las dos líneas. Los argumentos del programa especifican que carácter debe ser usado en lugar del espacio para separar los campos de una línea, que campo usar cuando busca líneas coincidentes y si devuelve o no las líneas que no coinciden. (es)
  • join is a command in Unix and Unix-like operating systems that merges the lines of two sorted text files based on the presence of a common field. It is similar to the join operator used in relational databases but operating on text files. (en)
  • join est une commande POSIX qui permet de fusionner les lignes de deux fichiers ayant des champs communs. Elle réalise des jointures, au sens de l'algèbre relationnelle, directement sur des fichiers texte. Cette commande compare les lignes de deux fichiers triés une à une et si une correspondance est trouvée sur les colonnes passées en argument, elle affichera le regroupement des champs présents sur les mêmes lignes. (fr)
  • join(조인)은 공통 필드의 존재에 기반하여 2개의 정렬된 텍스트 파일의 줄들을 병합하는 유닉스 및 유닉스 계열 운영 체제의 명령어이다. 관계형 데이터베이스에 사용되는 JOIN 연산자와 비슷하지만 이 유틸리티는 텍스트 파일에 대해 처리한다는 점에서 차이가 있다. (ko)
  • join è un comando dei sistemi operativi Unix e Unix-like, e più in generale dei sistemi POSIX, che legge due file di testo le cui linee contengono dei dati separati in più campi, ed unisce tra loro quelle che hanno un determinato campo in comune, presentando il risultato sullo standard output. Le linee di dati di entrambi i file debbono essere prima ordinate in base al valore dei campi scelti per l'unione (ad esempio tramite il comando sort), altrimenti il risultato è indefinito. Specificando le opzioni opportune è possibile usare join anche per ottenere le linee che non hanno corrispondenza, sia di un solo file che di entrambi, e sia in aggiunta che in sostituzione al normale output. (it)
  • join — команда UNIX-подобных операционных систем, объединяющая строки двух упорядоченных текстовых файлов на основе наличия общего поля. По своей функциональности схожа с оператором Join, используемого в языке SQL, но оперирует с текстовыми файлами. Данная утилита написана Майком Хертелем (англ. Mike Haertel). (ru)
dbo:author
dbo:computingPlatform
dbo:developer
dbo:genre
dbo:license
dbo:operatingSystem
dbo:programmingLanguage
dbo:wikiPageExternalLink
dbo:wikiPageID
  • 598134 (xsd:integer)
dbo:wikiPageLength
  • 3452 (xsd:nonNegativeInteger)
dbo:wikiPageRevisionID
  • 1096090989 (xsd:integer)
dbo:wikiPageWikiLink
dbp:author
dbp:developer
dbp:genre
dbp:license
dbp:name
  • join (en)
dbp:operatingSystem
dbp:platform
dbp:programmingLanguage
dbp:wikiPageUsesTemplate
dcterms:subject
gold:hypernym
rdf:type
rdfs:comment
  • join je unixový příkaz, který spojuje řádky dvou setříděných souborů na základě přítomnosti společného pole. Je to podobné jako operátor JOIN v relačních databázích, ale pracuje s textovými soubory. join bere jako vstup dva textové soubory a argumenty. Pokud není argument zadán, příkaz prohledává dva soubory a hledá dva řádky začínající na stejné první pole. Výstupem příkazu je společné slovo plus zbytky z obou řádků, tak jak je tomu v následujícím příkladu. soubor1: george jimkumar gunaware soubor2: albert marthageorge sophie Výstup příkazu join soubor1 soubor2: george jim sophie (cs)
  • join هو أمر في أنظمة التشغيل يونكس و شبيه يونكس التي تجمع بين السطور اثنين من فرز ملفات نصية على أساس وجود مشترك حقل (علم الحاسوب) . وهو مشابه لمشغل الصلة المستخدم في قواعد البيانات العلائقية ولكنه يعمل على ملفات نصية. (ar)
  • join is a command in Unix and Unix-like operating systems that merges the lines of two sorted text files based on the presence of a common field. It is similar to the join operator used in relational databases but operating on text files. (en)
  • join est une commande POSIX qui permet de fusionner les lignes de deux fichiers ayant des champs communs. Elle réalise des jointures, au sens de l'algèbre relationnelle, directement sur des fichiers texte. Cette commande compare les lignes de deux fichiers triés une à une et si une correspondance est trouvée sur les colonnes passées en argument, elle affichera le regroupement des champs présents sur les mêmes lignes. (fr)
  • join — команда UNIX-подобных операционных систем, объединяющая строки двух упорядоченных текстовых файлов на основе наличия общего поля. По своей функциональности схожа с оператором Join, используемого в языке SQL, но оперирует с текстовыми файлами. Данная утилита написана Майком Хертелем (англ. Mike Haertel). (ru)
  • join (/bin/join) ist ein Computerprogramm zum Erzeugen einer Ausgabe aus zwei zusammengeführten (record-orientierten) Eingangsdatenströmen, ähnlich den verschiedenen Varianten der SQL-Operation JOIN. Als Input werden zwei bereits sortiert vorliegende Datenströme (Files, Ausgaben von Subprozessen, Ergebnisse von Prozesssubstitutionen oder sonstiger Input auf stdin) erwartet, die Ausgabe erfolgt auf stdout. (de)
  • join es un comando presente en los sistemas operativos Unix-like que une las líneas de dos ficheros de texto plano si tienen el primer campo en común. Es similar a la sentencia JOIN usada en bases de datos relacionales pero opera en ficheros de texto. El comando join toma como entrada dos ficheros de texto y diferentes opciones. Si no se especifica ninguna opción, el comando busca un par de líneas en los dos ficheros que comienzan por el mismo campo (una secuencia de caracteres sin espacios) y muestra como salida una línea compuesta por el primer campo seguido del resto de las dos líneas. (es)
  • join è un comando dei sistemi operativi Unix e Unix-like, e più in generale dei sistemi POSIX, che legge due file di testo le cui linee contengono dei dati separati in più campi, ed unisce tra loro quelle che hanno un determinato campo in comune, presentando il risultato sullo standard output. Le linee di dati di entrambi i file debbono essere prima ordinate in base al valore dei campi scelti per l'unione (ad esempio tramite il comando sort), altrimenti il risultato è indefinito. (it)
rdfs:label
  • جوين (يونكس) (ar)
  • Join (cs)
  • Join (Unix) (de)
  • Join (Unix) (es)
  • Join (Unix) (fr)
  • Join (Unix) (it)
  • Join (Unix) (en)
  • Join (유닉스) (ko)
  • Join (Unix) (ru)
owl:sameAs
prov:wasDerivedFrom
foaf:isPrimaryTopicOf
foaf:name
  • join (en)
is dbo:knownFor of
is dbo:wikiPageDisambiguates of
is dbo:wikiPageRedirects of
is dbo:wikiPageWikiLink of
is dbp:knownFor 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