我通常使用ps -elf | grep proceesname
来详细描述名为processname
的流程。我认为我必须为此写太多。
现在我在想的是创建一个像
这样的bash别名alias lsps='ps -elf | grep $1'
仅使用lsps processname
来提供上述详细说明。
所以,我的问题是如何创建一个接受参数的bash别名。
PS:我知道我可以为上述任务编写一个shell脚本,但我只是想知道如何使用bash别名。
答案 0 :(得分:55)
很简单;
alias lsps='ps -elf | grep'
命令行参数将自动添加到别名的末尾:
lsps arg1 arg2 arg3 => converted to => ps -elf | grep arg1 arg2 arg3
只有在想要在别名末尾添加参数时才有效。
如果要在扩展命令行中获取别名的参数,则必须使用函数:
例如:
lsps()
{
ps -elf | grep "$1" | grep -v grep
}
函数和别名可以保存在~/.bashrc
文件中)或包含在其中的文件中:
$ cat /tmp/.bash_aliases
lsps()
{
ps -elf | grep "$1" | grep -v grep
}
$ . /tmp/.bash_aliases
$
答案 1 :(得分:5)
使用此:
alias lsps='ps -elf | grep'
然后你可以发出这个:
lsps processname