Поиск по:comet.sai.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера comet.sai.msu.ru ,которые мы индексируем. Показаны документы 981 - 1000 из 1544.
Упорядочить по:
URL
|
дате изменения
981. Creating an alias with the Bourne Again SHell
. To create a command alias use the command: alias name_of_alias = definition_of_alias . Examples . Adding an alias . Referring to other command aliases . Displaying the value of aliases . Cancelling a command alias . Removing a command alias .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_bash.html -- 2.2 Кб -- 17.01.1997
Похожие документы
Похожие документы
982. Examples of creating command alias in the Bourne Again SHell
To create a simple alias: alias del='rm -i' del memo.txt rm: remove memeo.txt? y . This creates the alias del for the command rm -i which prompts you for confirmation that you want to remove a file before it does so. ... To create a command alias that consists of several commands: alias what='ps -aux | ... To refer to another command alias within an alias: alias h=history alias rev='h | ... To use more than one alias on the same command line: alias root='cd /; ' alias slist='ls -l | ...
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_bash1.html -- 4.3 Кб -- 17.01.1997
Похожие документы
Похожие документы
983. Adding a command alias
. To make a command alias a permanent part of your working environment: . 1. Edit the shell start up file .bashrc and add the line which defines and exports the command alias. For example: alias a3print='lp -d any -fa3';export a3print . 2. Save the changes and leave the editor. 3. Source the shell startup file to have the changes take immediate effect. For example: .bashrc .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_bash2.html -- 2.1 Кб -- 17.01.1997
Похожие документы
Похожие документы
984. Referring to other command aliases
. You can use an existing command alias within another command alias. Define a first alias: alias print=lp . This creates the alias print for the lp command used to print files to your default printer. This alias can now be used within another alias. For example: alias tree='cd; ls -R | print' . The alias tree will list the complete directory tree below the users home directory on the default printer. Multiple commands within an alias can be separated by a semicolon; just as they are on the command line .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_bash3.html -- 2.3 Кб -- 17.01.1997
[ Сохраненная копия ] Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_ksh3.html -- 2.3 Кб -- 17.01.1997
Похожие документы
[ Сохраненная копия ] Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_ksh3.html -- 2.3 Кб -- 17.01.1997
Похожие документы
985. Displaying value of current aliases
. To display the value of each alias known to the shell enter the command: alias . To display the current value for a particular alias use the command: alias name_of_alias . For example to display the current value of the alias named print : alias print lpr \1* -Pps5 . This informs you that print is an alias for the command lpr \1* -Pps5 .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_bash4.html -- 2.1 Кб -- 17.01.1997
[ Сохраненная копия ] Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_ksh4.html -- 2.1 Кб -- 17.01.1997
Похожие документы
[ Сохраненная копия ] Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_ksh4.html -- 2.1 Кб -- 17.01.1997
Похожие документы
986. Cancelling a command alias
. To cancel a command alias during your current login session use the command: unalias alias_name . For example: unalias print . This cancels the command alias print for your current login session. If the alias name is the same as a command name, precede the alias name with a backslash to temporarily override the alias. For example: alias rm='rm -i' rm *.ps toc.ps: ? n ..... \rm *.ps . You will have to remove the alias definition from your shell startup file if you want to cancel the alias permanently.
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_bash5.html -- 2.4 Кб -- 17.01.1997
Похожие документы
Похожие документы
987. Removing a command alias
. To remove a command alias: . 1. Edit the shell startup file and remove the line containing the alias definition. 2. Save the changes and leave the editor. 3. Source the shell startup file to have the changes take immediate effect. For example: source .bashrc .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_bash6.html -- 2.0 Кб -- 17.01.1997
Похожие документы
Похожие документы
988. Creating an alias with the C shell
. To create a command alias use the command: alias name definition . Examples . Adding a command alias . Referring to other command aliases . Passing command arguments . Displaying the value of aliases . Cancelling a command alias . Removing a command alias .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_csh.html -- 2.2 Кб -- 17.01.1997
Похожие документы
Похожие документы
989. Adding a command alias
. To make a command alias a permanent part of your working environment: . 1. Edit the shell startup file .tcshrc and add the line defining the alias. 2. Save the changes and leave the editor. 3. Source the shell startup file to have the changes take immediate effect. For example: source .cshrc .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_csh0.html -- 2.0 Кб -- 17.01.1997
Похожие документы
Похожие документы
990. Referring to other command aliases
. You can use an existing command alias within another command alias. Define a first alias: alias print lpr . This creates the alias print for the lpr command used to print files to your default printer. This alias can now be used within another alias. For example: alias tree 'cd; ls -R | print' . The alias tree will list the complete directory tree below the users home directory on the default printer. Multiple commands within an alias can be separated by a semicolon; just as they are on the command line .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_csh1.html -- 2.3 Кб -- 17.01.1997
Похожие документы
Похожие документы
991. Examples of passing arguments given to a command alias
To pass a single argument to a command alias: alias print 'lpr \\!^ Pps5' print memo.txt . The notation !^ causes the first argument to the command alias print to be inserted in the command at this point. ... character is preceded by a \\ to prevent it being interpreted by the shell as a history command. To pass each argument to a command alias: alias print 'lpr \\!* ... The notation !* causes each argument given to the alias print to be inserted in the command at this point. ...
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_csh2.1.html -- 2.8 Кб -- 17.01.1997
Похожие документы
Похожие документы
992. Displaying value of current aliases
. To display the value of each alias known to the shell enter the command: alias . To display the current value for a particular alias use the command: alias name_of_alias . For example, to display the current value of the alias named print : alias print lpr \1* -Pps5 . Informs you that print is an alias for the command lpr \1* -Pps5 .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_csh2.2.html -- 2.1 Кб -- 17.01.1997
Похожие документы
Похожие документы
993. Passing command arguments
. To pass an argument to the alias at a specific point in the command use the one of the following notations: !^ - pass the first argument to the alias !* - pass each argument given to the alias . Examples . Did You Know? .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_csh2.html -- 2.0 Кб -- 17.01.1997
Похожие документы
Похожие документы
994. Cancelling a command alias
. To cancel a command alias during your current login session use the command: unalias alias_name . For example: unalias print . This cancels the command alias print for your current login session. You will have to remove the alias definition from your shell startup file if you want to cancel the alias permanently.
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_csh3.html -- 2.1 Кб -- 17.01.1997
Похожие документы
Похожие документы
995. Removing a command alias
. To remove a command alias: . 1. Edit the shell startup file and remove the containing the alias definition. 2. Save the changes and leave the editor. 3. Source the shell startup file to have the changes take immediate effect. For example: source .cshrc .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_csh4.html -- 2.0 Кб -- 17.01.1997
Похожие документы
Похожие документы
996. Examples of creating a command alias in the C shell
To create a simple command alias: alias del 'rm -i' del memo.txt rm: remove memo.txt? y . This creates the alias del for the command rm -i which prompts you for confirmation that you want to remove a file before it does so. ... To create a command alias that consists of several commands: alias what 'ps -aux | ... This creates the alias what . ... To refer to another command alias within an alias: alias h history alias rev 'h | ... To pass command arguments to the alias: alias print 'lpr \\!^ ...
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_csh5.html -- 3.8 Кб -- 17.01.1997
Похожие документы
Похожие документы
997. Creating an alias with the Korn shell
. To create a command alias use the command: alias name_of_alias = definition_of_alias . Examples . Adding an alias . Referring to other command aliases . Displaying the value of aliases . Cancelling a command alias . Removing a command alias .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_ksh.html -- 2.1 Кб -- 17.01.1997
Похожие документы
Похожие документы
998. Examples of creating command alias in the Korn shell
To create a simple alias: alias del='rm -i' del memo.txt rm: remove memo.txt? y . This creates the alias del for the command rm -i which prompts you for confirmation that you want to remove a file before it does so. ... To create a command alias that consists of several commands: alias what='ps -aux | ... To refer to another command alias within an alias: alias h=history alias rev='h | ... To use more than one alias on the same command line: alias root='cd /; ' alias slist='ls -l | ...
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_ksh1.html -- 4.3 Кб -- 17.01.1997
Похожие документы
Похожие документы
999. Adding a command alias
. To make a command alias a permanent part of your working environment: . 1. Edit the shell start up file .kshrc and add the line which defines and exports the command alias. For example: alias a3print='lp -d any -fa3';export a3print . 2. Save the changes and leave the editor. 3. Source the shell startup file to have the changes take immediate effect. For example: .kshrc .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/shell/alias_ksh2.html -- 2.1 Кб -- 17.01.1997
Похожие документы
Похожие документы
1000. Elm
. elm was initially developed to provide a full-screen mail program when only simple line-based ones were available. Since then it has grown and become established among the Unix community. Unlike mail which works mostly with one line at a time, elm takes advantage of the entire terminal screen for listing mail received and editing messages. Start using elm with the command: elm . Pine takes much the same approach as elm and is more sophisticated. elm Documentation .
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/mail/elm.html -- 2.2 Кб -- 17.01.1997
Похожие документы
Похожие документы