Alias (command) (original) (raw)
alias je standardní UN*Xový příkaz, kterým se vytvářejí přezdívky pro určité akce obsažené v řetězci. Řetězcem může být příkaz nebo taky příkaz včetně argumentů, nebo spojení více příkazů do jednoho řetězce. Pokud není uveden řetězec, vypíše se aktuální nastavení. Příkaz alias bez argumentů vypíše momentálnínastavení všech přezdívek. Použití: alias [přezdívka[=řetězec]] Příklad: $ alias lsmac='ifconfig | grep HWadr' Vytvořené přezdívky se ruší pomocí příkazu unalias [přezdívka].
Property | Value | ||||
---|---|---|---|---|---|
dbo:abstract | alias je standardní UN*Xový příkaz, kterým se vytvářejí přezdívky pro určité akce obsažené v řetězci. Řetězcem může být příkaz nebo taky příkaz včetně argumentů, nebo spojení více příkazů do jednoho řetězce. Pokud není uveden řetězec, vypíše se aktuální nastavení. Příkaz alias bez argumentů vypíše momentálnínastavení všech přezdívek. Použití: alias [přezdívka[=řetězec]] Příklad: $ alias lsmac='ifconfig | grep HWadr' Vytvořené přezdívky se ruší pomocí příkazu unalias [přezdívka]. (cs) In computing, alias is a command in various command-line interpreters (shells), which enables a replacement of a word by another string. It is mainly used for abbreviating a system command, or for adding default arguments to a regularly used command. alias is available in Unix shells, AmigaDOS, 4DOS/4NT, KolibriOS, Windows PowerShell, ReactOS, and the EFI shell. Aliasing functionality in the MS-DOS and Microsoft Windows operating systems is provided by the DOSKey command-line utility. An alias will last for the life of the shell session. Regularly used aliases can be set from the shell's rc file (such as .bashrc) so that they will be available upon the start of the corresponding shell session. The alias commands may either be written in the config file directly or sourced from a separate file. (en) Ein alias ist eine Funktion einer Unix-Shell, mit der mehrere Unix-Kommandos, oder ein Unix-Kommando mit mehreren Optionen, durch einen neuen Befehl ersetzt werden können. Es wird benutzt, um Zeit zu sparen und weniger zu tippen. Beispiel für eine Kombination aus den Unix-Kommandos ps und grep mit der Bash-Shell könnte der alias psg sein. Ziel des neuen Befehles psg ist die Ausgabe eines bestimmten Prozesses auf dem Bildschirm. Im folgenden Beispiel sollen Informationen über den Daemonprozess von Syslog ausgegeben werden. Durch den Aufruf des Unix-Shell-Kommandos alias werden alle bekannten aliase in dem Terminal angezeigt. Soll das neue Kommando wieder gelöscht werden, so wird die Funktion unalias verwendet. $ alias psg='ps -ax | grep -v grep | grep'$ psg syslog 35 ?? Ss 0:00.26 /usr/sbin/syslogd$ aliasalias psg='ps -ax | grep -v grep | grep'$ unalias psg Die definierten aliase können in den Startdateien des Benutzerprofiles gespeichert werden. Oft werden aliase mit dem Unix-Befehls ls verwendet. Ein beliebtes Beispiel ist l bzw. ll, ein alias für ls -l, der eine ausführlichere Ausgabe mit den Zugriffsrechten aller Dateien in einem bestimmten Verzeichnis anzeigt. Unter HP-UX ist dieser Befehl jedoch eine Binärdatei. (de) En informática alias es una orden disponible en varios intérpretes de comandos tales como los shells de Unix, / y Windows PowerShell, que permite reemplazar una palabra o serie de palabras con otra. Su uso principal es el de abreviar órdenes o para añadir argumentos de forma predeterminada a una orden que se usa con mucha frecuencia. Los alias se mantienen hasta que se termina la sesión en la terminal, pero normalmente se suelen añadir en el fichero de configuración del intérprete de órdenes (~/.cshrc o /etc/csh.cshrc (aplicado a todo el sistema) para csh, o ~/.bashrc o si quieres aplicarlo a todo el sistema /etc/bashrc o /etc/bash.bashrc para bash) de forma que siempre están disponibles para todas las sesiones de terminal. (es) La commande alias que proposent de nombreux shells informatiques permet de définir de nouvelles commandes. Elle s'emploie principalement pour abréger une commande avec ses options ou rajouter par défaut des options à une commande régulièrement utilisée. Exemples : Sous sh et ses dérivés, * alias ll='ls -l' crée la commande ll qui exécutera ls -l. * alias ll rappelle la définition de ll. POSIX prévoit le fonctionnement et les options de alias, qui peut aussi afficher les définitions de celles préalablement créées. * L'exécution d'un alias est équivalente à celle de sa définition. * La commande alias sans argument affiche la liste de tous les alias en cours. * Un alias défini en cours de shell sera oublié à la fermeture de ce dernier. * Si un alias redéfinit une commande, celle-ci reste accessible en la préfixant par une barre oblique inverséeExemple : Après alias ls='ls -ls' * ls exécute la commande ls avec les options qui créent une liste détaillée des fichiers par ordre de taille. * \ls exécute la commande ls avec ses options par défaut, qui renvoient une liste alphabétique des noms de fichier. Les alias sont habituellement définis dans le fichier de démarrage du shell (~/.bashrc pour bash). Certaines distributions comme Debian réservent un fichier .bash_aliases, qu'il faudra appeler dans .bashrc (fr) 컴퓨팅에서 alias는 다양한 명령 줄 인터프리터(워드를 다른 문자열로 치환할 수 있는 유닉스 셸, 4DOS/, 윈도우 파워셸 등의 셸)의 명령어이다. 시스템 명령어를 단축시키기 위해 주로 사용되며, 그 외에 주기적으로 사용되는 명령어에 기본 변수를 추가하기 위해 사용된다. MS-DOS와 마이크로소프트 윈도우 운영 체제의 앨리어스 기능은 도스키(DOSKey) 명령 줄 유틸리티를 통해 제공된다. alias는 셸 세션이 생존하는 동안에만 지속된다. 주로 사용되는 별칭들은 셸의 구성 파일(csh의 경우 ~/.cshrc 또는 시스템 전역 /etc/csh.cshrc, 배시의 경우 ~/.bashrc 또는 시스템 전역 /etc/bashrc 또는 /etc/bash.bashrc for bash)에서 설정할 수 있으며 일치하는 셸 세션이 시작되자마자 이용이 가능하다. alias 명령어들은 설정 파일에 직접 기록하거나 별도의 파일에서 시켜서 쓸 수 있으며 이름은 보통 .alias(여러 개의 셸을 사용할 경우 .alias-bash, alias-csh 등)로 명명한다. (ko) alias(エイリアス)は、UNIXのシェルの組み込みコマンドで、コマンドを別名で登録(エイリアス)する役割がある。また、単独で実行すると今のエイリアスの一覧が表示される。エイリアスの登録を削除するには"unalias"コマンドを実行する。 (ja) Alias, nei sistemi operativi Unix e Unix-like è un comando di shell che permette di definire altri comandi. (it) alias to komenda w powłokach systemów Unix i Linux (np. csh, bash, Korn shell), która umożliwia zastąpienia wielu słów jednym słowem.Poleceniem alias często posługuje celem skrócenia komend systemowych lub dodania parametrów do istniejących komend.Zdefiniowane aliasy obowiązują w sesji powłoki.Jeżeli są wpisane do plików konfiguracyjnych powłok (np. ~/.cshrc, /etc/csh.cshrc, ~/.bashrc, /etc/bashrc), będą wtedy dostępne przy każdym uruchomieniu powłoki. (pl) Em computação, alias (em português: "pseudônimo", "apelido" ) é um comando em vários interpretadores de linha de comando (shells) como shells do Unix, / e Windows PowerShell, que possibilita a substituição de uma palavra por outra cadeia de caracteres. É usado principalmente para abreviação de um comando do sistema ou para adição de argumentos padrões para um comando usado regularmente. A funcionalidade de aliases no MS-DOS e sistemas operacionais Microsoft Windows é fornecida pelo utilitário de linha de comando . Um alias permanecerá durante a vida de uma sessão do shell. Aliases usados regularmente podem ser definidos a partir do arquivo de configuração do shell (~/.cshrc ou para uso global do sistema em /etc/csh.cshrc para o csh, ou ~/.bashrc ou para uso global do sistema em /etc/bashrc ou /etc/bash.bashrc para bash), para que sejam disponibilizados no início da sessão de shell correspondente. Os comandos alias podem ser escritos no arquivo de configuração diretamente ou fornecidos a partir de um arquivo separado, normalmente chamado .alias (ou .alias-bash, .alias-csh etc., se vários shells possam ser usados). (pt) alias — вбудована команда Bash та інших оболонок для скорочення команд та їх послідовностей. Також можливе перевизначення команд та підстановка в них параметрів. Зазвичай назначені імена зберігається лише протягом сесії. (uk) 在中,alias 是许多命令行界面的命令,比如 Unix shell,/ 和 Windows PowerShell 等,它给用户提供了别名——也就是用自定义字符串替换指定命令的功能,通常用于简写系统命令,或给常用命令添加默认选项,MS-DOS 和 Microsoft Windows 操作系统內,通常使用 DOSKey 命令定义别名。 alias 命令的作用时间是命令运行之后到 shell 会话结束,经常使用的别名可在 shell 的配置文件比如 C Shell(csh)的 ~/.cshrc 或 Bourne Again Shell 的 ~/.bashrc 里定义,如此当相应的 shell 会话启动后就可以使用这些自定义的别名了。alias 命令可以直接写入这些配置文件,或单独放在一个文件,比如 .alias 里,或依用户使用的解释器分别定义于 .alias-bash,.alias-csh 等文件,然后使用 source 命令执行该文件来设定。 (zh) |
dbo:author | dbr:Bill_Joy | ||||
dbo:computingPlatform | dbr:Cross-platform | ||||
dbo:developer | dbr:Commercial_software dbr:Open-source_software | ||||
dbo:genre | dbr:Command_(computing) | ||||
dbo:operatingSystem | dbr:Unix dbr:Unix-like dbr:AROS_Research_Operating_System dbr:AmigaDOS dbr:IBM_i dbr:KolibriOS dbr:Microsoft_Windows dbr:ReactOS | ||||
dbo:thumbnail | wiki-commons:Special:FilePath/Alias_command_example.png?width=300 | ||||
dbo:wikiPageExternalLink | http://linfo.org/alias.html http://www.ss64.com/bash/alias.html | ||||
dbo:wikiPageID | 3026193 (xsd:integer) | ||||
dbo:wikiPageLength | 11527 (xsd:nonNegativeInteger) | ||||
dbo:wikiPageRevisionID | 1077054241 (xsd:integer) | ||||
dbo:wikiPageWikiLink | dbr:Bash_(Unix_shell) dbr:Bill_Joy dbr:Bourne_shell dbc:IBM_i_Qshell_commands dbr:Unix dbr:Unix-like dbr:Unix_shell dbr:John_Wiley_&_Sons dbc:Windows_administration dbr:Command_(computing) dbr:Commercial_software dbr:Cross-platform dbr:MS-DOS dbr:Computing dbr:Source_(command) dbr:C_Shell dbr:C_shell dbr:Windows_PowerShell dbr:AROS_Research_Operating_System dbr:AmigaDOS dbr:4DOS dbr:4NT_(shell) dbr:DOSKey dbr:Runtime_environment dbr:Tcsh dbc:ReactOS_commands dbc:Standard_Unix_programs dbc:Unix_SUS2008_utilities dbc:Windows_commands dbr:Symbolic_link dbr:Shell_script dbr:IBM_i dbr:KolibriOS dbr:Microsoft_Windows dbr:Open-source_software dbr:ReactOS dbr:Recursively dbr:Shell_(computing) dbr:Working_directory dbr:Korn_shell dbr:Unified_Extensible_Firmware_Interface dbr:Command-line_interpreter dbr:Environment_variables dbr:Argument_(computer_science) dbr:Rc_file | ||||
dbp:author | dbr:Bill_Joy | ||||
dbp:caption | Example of command (en) | ||||
dbp:developer | Various open-source and commercial developers (en) | ||||
dbp:genre | dbr:Command_(computing) | ||||
dbp:name | alias (en) | ||||
dbp:operatingSystem | dbr:Unix dbr:Unix-like dbr:AROS_Research_Operating_System dbr:AmigaDOS dbr:IBM_i dbr:KolibriOS dbr:Microsoft_Windows dbr:ReactOS | ||||
dbp:platform | dbr:Cross-platform | ||||
dbp:screenshot | Alias command example.png (en) | ||||
dbp:wikiPageUsesTemplate | dbt:Unix_commands dbt:Cite_book dbt:Code dbt:For dbt:Infobox_software dbt:Mono dbt:Refimprove dbt:Reflist dbt:Short_description dbt:Wikibooks dbt:Man dbt:Lowercase | ||||
dcterms:subject | dbc:IBM_i_Qshell_commands dbc:Windows_administration dbc:ReactOS_commands dbc:Standard_Unix_programs dbc:Unix_SUS2008_utilities dbc:Windows_commands | ||||
gold:hypernym | dbr:Command | ||||
rdf:type | owl:Thing dbo:Software schema:CreativeWork dbo:Work wikidata:Q386724 wikidata:Q7397 yago:WikicatUnixSUS2008Utilities yago:Abstraction100002137 yago:Company108058098 yago:Group100031264 yago:Institution108053576 yago:Organization108008335 yago:YagoLegalActor yago:YagoLegalActorGeo yago:YagoPermanentlyLocatedEntity dbo:MilitaryUnit yago:Service108186047 yago:SocialGroup107950920 yago:Utility108185758 | ||||
rdfs:comment | alias je standardní UN*Xový příkaz, kterým se vytvářejí přezdívky pro určité akce obsažené v řetězci. Řetězcem může být příkaz nebo taky příkaz včetně argumentů, nebo spojení více příkazů do jednoho řetězce. Pokud není uveden řetězec, vypíše se aktuální nastavení. Příkaz alias bez argumentů vypíše momentálnínastavení všech přezdívek. Použití: alias [přezdívka[=řetězec]] Příklad: $ alias lsmac='ifconfig | grep HWadr' Vytvořené přezdívky se ruší pomocí příkazu unalias [přezdívka]. (cs) En informática alias es una orden disponible en varios intérpretes de comandos tales como los shells de Unix, / y Windows PowerShell, que permite reemplazar una palabra o serie de palabras con otra. Su uso principal es el de abreviar órdenes o para añadir argumentos de forma predeterminada a una orden que se usa con mucha frecuencia. Los alias se mantienen hasta que se termina la sesión en la terminal, pero normalmente se suelen añadir en el fichero de configuración del intérprete de órdenes (~/.cshrc o /etc/csh.cshrc (aplicado a todo el sistema) para csh, o ~/.bashrc o si quieres aplicarlo a todo el sistema /etc/bashrc o /etc/bash.bashrc para bash) de forma que siempre están disponibles para todas las sesiones de terminal. (es) 컴퓨팅에서 alias는 다양한 명령 줄 인터프리터(워드를 다른 문자열로 치환할 수 있는 유닉스 셸, 4DOS/, 윈도우 파워셸 등의 셸)의 명령어이다. 시스템 명령어를 단축시키기 위해 주로 사용되며, 그 외에 주기적으로 사용되는 명령어에 기본 변수를 추가하기 위해 사용된다. MS-DOS와 마이크로소프트 윈도우 운영 체제의 앨리어스 기능은 도스키(DOSKey) 명령 줄 유틸리티를 통해 제공된다. alias는 셸 세션이 생존하는 동안에만 지속된다. 주로 사용되는 별칭들은 셸의 구성 파일(csh의 경우 ~/.cshrc 또는 시스템 전역 /etc/csh.cshrc, 배시의 경우 ~/.bashrc 또는 시스템 전역 /etc/bashrc 또는 /etc/bash.bashrc for bash)에서 설정할 수 있으며 일치하는 셸 세션이 시작되자마자 이용이 가능하다. alias 명령어들은 설정 파일에 직접 기록하거나 별도의 파일에서 시켜서 쓸 수 있으며 이름은 보통 .alias(여러 개의 셸을 사용할 경우 .alias-bash, alias-csh 등)로 명명한다. (ko) alias(エイリアス)は、UNIXのシェルの組み込みコマンドで、コマンドを別名で登録(エイリアス)する役割がある。また、単独で実行すると今のエイリアスの一覧が表示される。エイリアスの登録を削除するには"unalias"コマンドを実行する。 (ja) Alias, nei sistemi operativi Unix e Unix-like è un comando di shell che permette di definire altri comandi. (it) alias to komenda w powłokach systemów Unix i Linux (np. csh, bash, Korn shell), która umożliwia zastąpienia wielu słów jednym słowem.Poleceniem alias często posługuje celem skrócenia komend systemowych lub dodania parametrów do istniejących komend.Zdefiniowane aliasy obowiązują w sesji powłoki.Jeżeli są wpisane do plików konfiguracyjnych powłok (np. ~/.cshrc, /etc/csh.cshrc, ~/.bashrc, /etc/bashrc), będą wtedy dostępne przy każdym uruchomieniu powłoki. (pl) alias — вбудована команда Bash та інших оболонок для скорочення команд та їх послідовностей. Також можливе перевизначення команд та підстановка в них параметрів. Зазвичай назначені імена зберігається лише протягом сесії. (uk) 在中,alias 是许多命令行界面的命令,比如 Unix shell,/ 和 Windows PowerShell 等,它给用户提供了别名——也就是用自定义字符串替换指定命令的功能,通常用于简写系统命令,或给常用命令添加默认选项,MS-DOS 和 Microsoft Windows 操作系统內,通常使用 DOSKey 命令定义别名。 alias 命令的作用时间是命令运行之后到 shell 会话结束,经常使用的别名可在 shell 的配置文件比如 C Shell(csh)的 ~/.cshrc 或 Bourne Again Shell 的 ~/.bashrc 里定义,如此当相应的 shell 会话启动后就可以使用这些自定义的别名了。alias 命令可以直接写入这些配置文件,或单独放在一个文件,比如 .alias 里,或依用户使用的解释器分别定义于 .alias-bash,.alias-csh 等文件,然后使用 source 命令执行该文件来设定。 (zh) In computing, alias is a command in various command-line interpreters (shells), which enables a replacement of a word by another string. It is mainly used for abbreviating a system command, or for adding default arguments to a regularly used command. alias is available in Unix shells, AmigaDOS, 4DOS/4NT, KolibriOS, Windows PowerShell, ReactOS, and the EFI shell. Aliasing functionality in the MS-DOS and Microsoft Windows operating systems is provided by the DOSKey command-line utility. (en) Ein alias ist eine Funktion einer Unix-Shell, mit der mehrere Unix-Kommandos, oder ein Unix-Kommando mit mehreren Optionen, durch einen neuen Befehl ersetzt werden können. Es wird benutzt, um Zeit zu sparen und weniger zu tippen. $ alias psg='ps -ax | grep -v grep | grep'$ psg syslog 35 ?? Ss 0:00.26 /usr/sbin/syslogd$ aliasalias psg='ps -ax | grep -v grep | grep'$ unalias psg Die definierten aliase können in den Startdateien des Benutzerprofiles gespeichert werden. (de) La commande alias que proposent de nombreux shells informatiques permet de définir de nouvelles commandes. Elle s'emploie principalement pour abréger une commande avec ses options ou rajouter par défaut des options à une commande régulièrement utilisée. Exemples : Sous sh et ses dérivés, * alias ll='ls -l' crée la commande ll qui exécutera ls -l. * alias ll rappelle la définition de ll. POSIX prévoit le fonctionnement et les options de alias, qui peut aussi afficher les définitions de celles préalablement créées. Après alias ls='ls -ls' (fr) Em computação, alias (em português: "pseudônimo", "apelido" ) é um comando em vários interpretadores de linha de comando (shells) como shells do Unix, / e Windows PowerShell, que possibilita a substituição de uma palavra por outra cadeia de caracteres. É usado principalmente para abreviação de um comando do sistema ou para adição de argumentos padrões para um comando usado regularmente. A funcionalidade de aliases no MS-DOS e sistemas operacionais Microsoft Windows é fornecida pelo utilitário de linha de comando . (pt) |
rdfs:label | Alias (Unix) (cs) Alias (Unix) (de) Alias (command) (en) Alias (Unix) (es) Alias (POSIX) (fr) Alias (Unix) (it) Alias (명령어) (ko) Alias (コマンド) (ja) Alias (Unix) (pl) Alias (comando) (pt) Alias (命令) (zh) Alias (bash) (uk) | ||||
owl:sameAs | freebase:Alias (command) yago-res:Alias (command) wikidata:Alias (command) dbpedia-cs:Alias (command) dbpedia-da:Alias (command) dbpedia-de:Alias (command) dbpedia-es:Alias (command) dbpedia-fa:Alias (command) dbpedia-fr:Alias (command) dbpedia-hr:Alias (command) dbpedia-it:Alias (command) dbpedia-ja:Alias (command) dbpedia-ko:Alias (command) dbpedia-pl:Alias (command) dbpedia-pt:Alias (command) dbpedia-sk:Alias (command) dbpedia-tr:Alias (command) dbpedia-uk:Alias (command) dbpedia-zh:Alias (command) https://global.dbpedia.org/id/2eyTJ | ||||
prov:wasDerivedFrom | wikipedia-en:Alias_(command)?oldid=1077054241&ns=0 | ||||
foaf:depiction | wiki-commons:Special:FilePath/Alias_command_example.png | ||||
foaf:isPrimaryTopicOf | wikipedia-en:Alias_(command) | ||||
foaf:name | alias (en) | ||||
is dbo:wikiPageDisambiguates of | dbr:Alias | ||||
is dbo:wikiPageRedirects of | dbr:Unalias dbr:Alias_(Unix) dbr:Alias_(Unix_shell) | ||||
is dbo:wikiPageWikiLink of | dbr:PowerShell dbr:Ps_(Unix) dbr:Qshell dbr:Rocket_U2 dbr:List_of_Unix_commands dbr:Move_(command) dbr:Del_(command) dbr:Command-line_interface dbr:Pushd_and_popd dbr:Cmd.exe dbr:Sleep_(command) dbr:Clobbering dbr:Take_Command_Console dbr:Type_(Unix) dbr:UEFI dbr:4DOS dbr:DOSKEY dbr:History_(command) dbr:Ren_(command) dbr:Tee_(command) dbr:Kill_(command) dbr:Symbolic_link dbr:Alias dbr:KolibriOS dbr:KornShell dbr:Mibbit dbr:ReactOS dbr:TYPE_(DOS_command) dbr:Unalias dbr:Alias_(Unix) dbr:Alias_(Unix_shell) | ||||
is foaf:primaryTopic of | wikipedia-en:Alias_(command) |