About: Tee (command)

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

In computing, tee is a command in command-line interpreters (shells) using standard streams which reads standard input and writes it to both standard output and one or more files, effectively duplicating its input. It is primarily used in conjunction with pipes and filters. The command is named after the T-splitter used in plumbing.

Property Value
dbo:abstract
  • في الحوسبة، تي (أمر) أو tee هو أمر في واجهة سطر الأوامر ( قشرة ) باستخدام الجداول القياسية التي تنص على الإدخال القياسي ويكتب إلى كل من الإنتاج القياسي وملفات واحد أو أكثر، تكرار فعال مدخلاته. يستخدم بشكل أساسي مع . تتم تسمية الأمر على اسم . (ar)
  • Ve výpočetní technice je příkaz tee filtr, který čte standardní vstup a duplikuje jej tím, že jej vypisuje jak na standardní výstup tak do souboru, který mu byl zadán jako parametr. Příkaz je pojmenován po rozbočce ve tvaru písmena T používané instalatéry. (cs)
  • tee [tiː] ist ein Standard-Unix-Kommando. Sein Name leitet sich von dem T-Stück (engl. tee connector) ab, mit dem Klempner eine Abzweigung in eine Leitung einbauen. Der Befehl liest Daten von <a href="/wiki/Stdin" class="mw-redirect" title="Stdin">stdin</a> und gibt sie nach <a href="/wiki/Stdout" class="mw-redirect" title="Stdout">stdout</a> und in eine (neu anzulegende oder bestehende) Datei aus. Er wird benutzt, um Zwischenergebnisse innerhalb einer Pipe zu erhalten. Diese können zur Fehleranalyse herangezogen oder auch in anderen Pipes weiterverarbeitet werden. Existenz und Funktionsumfang sowie Verhalten dieses Kommandos wird sowohl durch die Single UNIX Specification (SUS) als auch durch den POSIX-Standard genormt, entsprechend dem IEEE-Standard 1003.1 aus dem Jahr 1990. Dem Standard gemäß versteht tee zwei Optionen: Mit -a wird an die angegebene Datei angehängt (anstatt eine neue leere Datei zu eröffnen) und mit -i wird das Signal SIGINT ignoriert. Der Befehl ist auch in den GNU Core Utilities enthalten. (de)
  • tee es un comando de la familia de los Sistemas Operativos Unix. Este copia los datos que recibe de la entrada estándar a cero o más archivos indicados por el usuario, como a su vez a la salida estándar.​ La utilización del comando está reservada solamente en el uso de las tuberías. Y le permite al usuario volcar la información generada, por alguno de los distintos comandos que conforman la tubería, a uno o más archivos. Esto evita a no tener que recurrir a otra ejecución adicional para obtener dicha información. (es)
  • <b>tee</b> est une commande POSIX qui permet de lire depuis l'entrée standard et écrire sur la sortie standard tout en écrivant dans des fichiers. Elle est notamment utile dans des tubes pour relayer la sortie à une nouvelle commande tout en la sauvegardant dans un fichier. (fr)
  • In computing, tee is a command in command-line interpreters (shells) using standard streams which reads standard input and writes it to both standard output and one or more files, effectively duplicating its input. It is primarily used in conjunction with pipes and filters. The command is named after the T-splitter used in plumbing. (en)
  • tee(ティー)はUnixのコマンドの一つ。コマンドの標準出力 (stdout)を他のファイルにコピーできる機能を提供する。構文は以下のとおり。 tee [ -a ] [ -i ] [ File ... ] teeコマンドは標準入力を受け入れ、標準出力を出力し(パイプ機能)、[ File ... ]で指定したファイルに標準出力と同じストリームを出力する。 teeとは英語のTであり、T字路(丁字路)を思い描くと、その機能がイメージしやすい。 (ja)
  • tee는 표준 스트림을 사용하여 표준 입력을 읽고 이를 표준 출력 및 하나 이상의 파일에 쓰는, 즉 입력을 효율적으로 복제하는 명령 줄 인터프리터(셸)의 명령어이다. 파이프와 필터의 결합으로 주로 사용된다. 이 명령어의 이름은 배관에 사용되는 T-스플리터(T-splitter)에서 비롯된 것이다. (ko)
  • tee – uniksowe polecenie, wypisujące dane wejściowe na standardowe wyjście i do dowolnej liczby plików. (pl)
  • tee (dall'inglese tee, pezzo a T in idraulica) è un comando dei sistemi operativi Unix e Unix-like, e più in generale dei sistemi POSIX, che legge dati dallo standard input e li visualizza sullo standard output, memorizzandoli nel contempo nei file specificati. È un tipo di filtro. Una caratteristica di tee è quella di non fare uso di buffer di linea nell'effettuare la scrittura sullo standard output e sui file, per cui i dati giunti sullo standard input sono resi subito disponibili nei file e sullo standard output senza ritardi. Ciò risulta particolarmente utile per la creazione di file di log. Per le sue caratteristiche, tee è tipicamente usato solo come componente di una pipeline software, al fine ad esempio di salvare in un file una copia dei dati intermedi o finali, o in congiunzione a una o più named pipe per attivare più elaborazioni degli stessi dati. (it)
  • Tee é um comando presente em diversos como por exemplo o shell do Unix. Este comando reproduz o conteúdo fornecido pela entrada padrão tanto na saída padrão quanto em um ou mais arquivos, por isso é muito utilizado juntamente com canalizações para registrar a saída gerada por outros programas. O nome do comando é mnemônico para a letra T, pois num diagrama mostrando o funcionamento do comando com a divisão da entrada padrão na saída padrão e em um arquivo acaba por lembrar esta letra. (pt)
  • tee — команда, выводит на экран, или же перенаправляет выходной материал команды и копирует его в файл или в переменную. В первую очередь, команда используется в привязке с перенаправлениями и фильтрами. Используется во множестве оболочек операционных систем, таких как Unix shells, 4DOS/4NT и Windows PowerShell. (ru)
  • 在計算機科學中,tee是一個常見的指令,它能夠將某個指令的標準輸出,導向、存入某個檔案中。許多不同的命令行界面(Shell)都提供這個功能,如 Unix shell、Windows PowerShell。 tee的功能通常是用管道,讓它不但能在螢幕輸出,而且也能夠將它儲存在檔案中。當一個資料在被另一個指令或程式改變之前的中間輸出,也能夠用tee來捕捉它。tee命令能夠讀取標準輸入,之後將它的內容寫入到標準輸出,同時將它的副本寫入特定的檔案或變數中。 (zh)
  • tee — утиліта UNIX-подібних систем, яка зчитує дані з потоку вводу і одночасно виводить їх та записує до файлу, назва якого передається як параметр. Назва походить від букви "Т", яка нагадує потрійне з’єднання труб, що використовується у сантехніці. (uk)
dbo:computingPlatform
dbo:developer
dbo:genre
dbo:license
dbo:operatingSystem
dbo:programmingLanguage
dbo:thumbnail
dbo:wikiPageExternalLink
dbo:wikiPageID
  • 2484503 (xsd:integer)
dbo:wikiPageLength
  • 12118 (xsd:nonNegativeInteger)
dbo:wikiPageRevisionID
  • 1122853704 (xsd:integer)
dbo:wikiPageWikiLink
dbp:developer
  • AT&T Bell Laboratories, Mike Parker, Richard Stallman, David MacKenzie, Microware, Jim Hall, JP Software, Microsoft (en)
dbp:genre
dbp:license
  • Plan 9: MIT License (en)
  • ReactOS: GPLv2 (en)
  • FreeDOS: GPL-2.0-or-later (en)
dbp:name
  • tee (en)
dbp:operatingSystem
dbp:platform
dbp:programmingLanguage
dbp:wikiPageUsesTemplate
dcterms:subject
gold:hypernym
rdf:type
rdfs:comment
  • في الحوسبة، تي (أمر) أو tee هو أمر في واجهة سطر الأوامر ( قشرة ) باستخدام الجداول القياسية التي تنص على الإدخال القياسي ويكتب إلى كل من الإنتاج القياسي وملفات واحد أو أكثر، تكرار فعال مدخلاته. يستخدم بشكل أساسي مع . تتم تسمية الأمر على اسم . (ar)
  • Ve výpočetní technice je příkaz tee filtr, který čte standardní vstup a duplikuje jej tím, že jej vypisuje jak na standardní výstup tak do souboru, který mu byl zadán jako parametr. Příkaz je pojmenován po rozbočce ve tvaru písmena T používané instalatéry. (cs)
  • tee es un comando de la familia de los Sistemas Operativos Unix. Este copia los datos que recibe de la entrada estándar a cero o más archivos indicados por el usuario, como a su vez a la salida estándar.​ La utilización del comando está reservada solamente en el uso de las tuberías. Y le permite al usuario volcar la información generada, por alguno de los distintos comandos que conforman la tubería, a uno o más archivos. Esto evita a no tener que recurrir a otra ejecución adicional para obtener dicha información. (es)
  • <b>tee</b> est une commande POSIX qui permet de lire depuis l'entrée standard et écrire sur la sortie standard tout en écrivant dans des fichiers. Elle est notamment utile dans des tubes pour relayer la sortie à une nouvelle commande tout en la sauvegardant dans un fichier. (fr)
  • In computing, tee is a command in command-line interpreters (shells) using standard streams which reads standard input and writes it to both standard output and one or more files, effectively duplicating its input. It is primarily used in conjunction with pipes and filters. The command is named after the T-splitter used in plumbing. (en)
  • tee(ティー)はUnixのコマンドの一つ。コマンドの標準出力 (stdout)を他のファイルにコピーできる機能を提供する。構文は以下のとおり。 tee [ -a ] [ -i ] [ File ... ] teeコマンドは標準入力を受け入れ、標準出力を出力し(パイプ機能)、[ File ... ]で指定したファイルに標準出力と同じストリームを出力する。 teeとは英語のTであり、T字路(丁字路)を思い描くと、その機能がイメージしやすい。 (ja)
  • tee – uniksowe polecenie, wypisujące dane wejściowe na standardowe wyjście i do dowolnej liczby plików. (pl)
  • Tee é um comando presente em diversos como por exemplo o shell do Unix. Este comando reproduz o conteúdo fornecido pela entrada padrão tanto na saída padrão quanto em um ou mais arquivos, por isso é muito utilizado juntamente com canalizações para registrar a saída gerada por outros programas. O nome do comando é mnemônico para a letra T, pois num diagrama mostrando o funcionamento do comando com a divisão da entrada padrão na saída padrão e em um arquivo acaba por lembrar esta letra. (pt)
  • tee — команда, выводит на экран, или же перенаправляет выходной материал команды и копирует его в файл или в переменную. В первую очередь, команда используется в привязке с перенаправлениями и фильтрами. Используется во множестве оболочек операционных систем, таких как Unix shells, 4DOS/4NT и Windows PowerShell. (ru)
  • 在計算機科學中,tee是一個常見的指令,它能夠將某個指令的標準輸出,導向、存入某個檔案中。許多不同的命令行界面(Shell)都提供這個功能,如 Unix shell、Windows PowerShell。 tee的功能通常是用管道,讓它不但能在螢幕輸出,而且也能夠將它儲存在檔案中。當一個資料在被另一個指令或程式改變之前的中間輸出,也能夠用tee來捕捉它。tee命令能夠讀取標準輸入,之後將它的內容寫入到標準輸出,同時將它的副本寫入特定的檔案或變數中。 (zh)
  • tee — утиліта UNIX-подібних систем, яка зчитує дані з потоку вводу і одночасно виводить їх та записує до файлу, назва якого передається як параметр. Назва походить від букви "Т", яка нагадує потрійне з’єднання труб, що використовується у сантехніці. (uk)
  • tee [tiː] ist ein Standard-Unix-Kommando. Sein Name leitet sich von dem T-Stück (engl. tee connector) ab, mit dem Klempner eine Abzweigung in eine Leitung einbauen. Der Befehl liest Daten von <a href="/wiki/Stdin" class="mw-redirect" title="Stdin">stdin</a> und gibt sie nach <a href="/wiki/Stdout" class="mw-redirect" title="Stdout">stdout</a> und in eine (neu anzulegende oder bestehende) Datei aus. Er wird benutzt, um Zwischenergebnisse innerhalb einer Pipe zu erhalten. Diese können zur Fehleranalyse herangezogen oder auch in anderen Pipes weiterverarbeitet werden. (de)
  • tee (dall'inglese tee, pezzo a T in idraulica) è un comando dei sistemi operativi Unix e Unix-like, e più in generale dei sistemi POSIX, che legge dati dallo standard input e li visualizza sullo standard output, memorizzandoli nel contempo nei file specificati. È un tipo di filtro. Per le sue caratteristiche, tee è tipicamente usato solo come componente di una pipeline software, al fine ad esempio di salvare in un file una copia dei dati intermedi o finali, o in congiunzione a una o più named pipe per attivare più elaborazioni degli stessi dati. (it)
rdfs:label
  • تي (أمر) (ar)
  • Tee (příkaz) (cs)
  • Tee (Unix) (de)
  • Tee (Unix) (es)
  • Tee (Unix) (fr)
  • Tee (Unix) (it)
  • Tee (명령어) (ko)
  • Tee (UNIX) (ja)
  • Tee (pl)
  • Tee (comando) (pt)
  • Tee (command) (en)
  • Tee (ru)
  • Tee (uk)
  • Tee (zh)
owl:sameAs
prov:wasDerivedFrom
foaf:depiction
foaf:isPrimaryTopicOf
foaf:name
  • tee (en)
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