alias (指示Shell在执行命令时将一个字符串替换为另一个字符串)

小猪老师 发表于 2020-07-06 11:28
浏览次数:
在手机上阅读

在Unix-like操作系统上,alias命令指示shell在执行命令时将一个字符串替换为另一个字符串。

查看英文版

目录

1 alias 运行系统环境

2 alias Syntax

3 alias 示例

alias 运行系统环境

Linux

alias Syntax

alias [name=['command']]
alias [name=['command']]

查看英文版

查看中文版

alias 示例

alias

不带参数调用别名将显示所有当前别名的命令。

alias ls='ls --color=auto'

创建别名“ ls ”,以便使用ls命令将始终显示颜色输出。

alias ll='ls -la'

创建一个别名“ ll ”,该别名将运行ls并带有以长列表格式(-l)显示所有文件(-a)的选项。

alias ..='cd ..'
alias ...='cd ../../'
alias ....='cd ../../../'
alias .....='cd ../../../../'

上面的四个命令创建别名,以分别快速导航到一个,两个,三个或四个更高级别的目录。例如,在设置了这些别名之后,键入命令“ ...”将使目录层次结构向上导航两次。

alias port='netstat -tulanp'

创建别名“ port ”,该别名将运行netstat以显示所有当前打开的网络端口。

alias

Invoking alias with no arguments displays all currently aliased commands.

alias ls='ls --color=auto'

Creates the alias "ls" such that using the ls command will always display color output.

alias ll='ls -la'

Create an alias "ll" which will run ls with the options to display all files (-a) in a long list format (-l).

alias ..='cd ..'
alias ...='cd ../../'
alias ....='cd ../../../'
alias .....='cd ../../../../'

The above four commands create aliases for quickly navigating to one, two, three, or four higher-level directories, respectively. For instance, after these alises are set, typing the command "..." would navigate up the directory hierarchy twice.

alias port='netstat -tulanp'

Creates the alias "port", which would run netstat to display all currently open network ports.

查看英文版

查看中文版

其他命令行

apt-cache | apt-get | ar | arch | arp | as | a2p | aspell | ac | at | awk | adduser | a2p | apropos | agrep | addgroup |

如此好文,分享给朋友
发表评论
验证码:
评论列表
共0条