Linux alias命令(为复杂命令创建别名,其中命令可带选项或参数)

2024-02-29 22:28

本文主要是介绍Linux alias命令(为复杂命令创建别名,其中命令可带选项或参数),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

  • Mastering the Linux `alias` Command(精通Linux的`alias`命令)
    • 1. Understanding the `alias` Command(理解`alias`命令)
      • 示例
        • Ubuntu20.04 arm操作系统
        • OpenEuler20.03 arm操作系统
    • 2. Basic Usage of `alias`(`alias`的基本用法)
    • 3. Advanced Applications of `alias`(`alias`的高级应用)
    • 4. Making Aliases Permanent(使别名永久有效)
    • 5. Tips and Tricks(技巧和提示)
      • 1. Use the `unalias` command to remove an alias.(使用`unalias`命令删除一个别)名。
      • 2. Enclose commands containing spaces in quotes when defining an alias.(在定义包含空格的命令的别名时,将命令用引号括起来。)
      • 3. Remember that aliases are specific to the shell they are defined in.
    • 6. Conclusion(结论)

Mastering the Linux alias Command(精通Linux的alias命令)

The Linux alias command is a built-in shell command that allows users to create shortcuts or synonyms(同义词) for other commands. It simplifies complex command-line instructions, saving time and minimizing potential mistakes.
Linux的alias命令是一个内置的shell命令,允许用户为其他命令创建快捷方式或同义词。它简化了复杂的命令行指令,节省了时间并尽可能减少了错误。

1. Understanding the alias Command(理解alias命令)

The alias command in Linux is an inbuilt(内置的) command that creates shortcuts for other commands which can include options and arguments. This can significantly(显著地) streamline(使效率更高) your workflow(工作流程), particularly when you frequently use long or complex commands.
Linux中的alias命令是一个内置命令,可以创建其他命令的快捷方式,其中可以包括选项和参数。这可以显著简化你的工作流程,特别是当你频繁使用长的或复杂的命令时。

To view all currently defined aliases in the terminal, simply type alias and press enter:
要查看终端中当前定义的所有别名,只需输入alias然后按回车键:

alias

示例

Ubuntu20.04 arm操作系统

在这里插入图片描述

OpenEuler20.03 arm操作系统

在这里插入图片描述

2. Basic Usage of aliasalias的基本用法)

The general syntax of the alias command is as follows:
alias命令的一般语法如下:

alias alias_name='command'

The alias_name is the name of the new alias, and command is the command that the alias refers to.
alias_name是新别名的名称,command是别名所指向的命令。

For instance(例如), to create a shortcut for the ls -lh command (which lists files in ‘long format’ with human-readable file sizes), one could define an alias named ll:
例如,为了创建ls -lh命令的快捷方式(它以"长格式"列出文件,文件大小可读),可以定义一个名为ll的别名:

alias ll='ls -lh'

Now, typing ll in the terminal would execute ls -lh.
现在,在终端中输入ll将执行ls -lh

3. Advanced Applications of aliasalias的高级应用)

Aliases can be more complex and powerful. They can incorporate(包含) multiple commands separated by semicolons(分号) or contain control structures such as loops or conditional statements.
别名可以更复杂和强大。他们可以包含由分号分隔的多个命令,或包含循环或条件语句等控制结构。

For example, an alias could be created to update the system and then clear the terminal:
例如,可以创建一个别名来更新系统然后清除终端:

alias update_and_clear='sudo apt-get update; clear'

4. Making Aliases Permanent(使别名永久有效)

Aliases defined in a terminal(终端) session(会话) are temporary - they cease(停止) to exist when the session is closed. To make an alias permanent, it needs to be defined in the shell configuration file.
在终端会话中定义的别名是临时的——当会话关闭时,它们就不存在了。要使别名永久有效,需要在shell配置文件中定义它。

注:"Terminal"或者"终端"在操作系统中,通常指的是一个用于接收用户输入命令和显示系统输出信息的接口。它通常是文本模式下的操作环境,没有图形化界面。在Windows系统中,最常见的类似工具是命令提示符(Command
Prompt)或PowerShell;而在Unix/Linux系统中,我们通常指的是shell环境。

使用终端可以让用户直接通过命令行来控制操作系统,执行各种任务,如管理文件系统、安装和删除软件包、启动和停止服务等。对于熟悉命令行的用户来说,这种方式往往比图形化界面更高效。

注:"Cease"和"stop"区别:
"Cease"和"stop"都有停止的意思,但它们的用法和语境有所不同。

"Stop"是一个更常见、更口语化的词汇,可用于各种情况,例如 “stop talking”(停止说话),“stop
running”(停止跑步)等。这个词可以在非正式或日常对话中使用。

"Cease"则更正式,常出现在书面语言或法律文件中,比如 “cease and desist”(立即停止)。通常用于表达某事物完全、永久性地结束。例如,“The company ceased operations”(公司停止了运营)。这个词通常不会在日常对话中使用。

For bash, this would be the ~/.bashrc file. For zsh, this would be the ~/.zshrc file. An example of defining an alias permanently for bash would be:
对于bash,这将是~/.bashrc文件。对于zsh,这将是~/.zshrc文件。以下是为bash永久定义别名的例子:

echo "alias ll='ls -lh'" >> ~/.bashrc
source ~/.bashrc

5. Tips and Tricks(技巧和提示)

Here are a few additional tips and tricks that might come in handy:
以下是一些可能派得上用场的额外技巧和提示:

1. Use the unalias command to remove an alias.(使用unalias命令删除一个别)名。

Explanation: The unalias command is used in Unix/Linux based systems to remove or delete the alias that was previously created.

解释:unalias命令用于Unix/Linux基础系统中,用来移除或删除之前创建的别名。

Example: Suppose we have created an alias like this: alias ls='ls -al'. If we want to remove this alias, we can use unalias ls.

示例:假设我们创建了这样一个别名:alias ls='ls -al'。如果我们想要移除这个别名,我们可以使用unalias ls

2. Enclose commands containing spaces in quotes when defining an alias.(在定义包含空格的命令的别名时,将命令用引号括起来。)

Explanation: When you are creating an alias and the command contains space, then you need to enclose(括起来) the whole command in single or double quotes(引号).

解释:当你在创建一个别名,并且命令包含空格时,你需要用单引号或双引号把整个命令括起来。

Example: To create an alias for the command ls -al, which has a space, you can write it as alias ls='ls -al'.

示例:为了创建一个包含空格的命令ls -al的别名,你可以写成alias ls='ls -al'

3. Remember that aliases are specific to the shell they are defined in.

记住,别名是特定于它们被定义的shell。

Explanation: Aliases are specific to the shell they are created in, and they will not be available in a new shell or a different terminal session unless they are defined in the shell’s configuration file.

解释:别名是特定于创建它们的shell,除非在shell的配置文件中定义,否则在新的shell或不同的终端会话中不可用。

Example: If you define alias ls='ls -al' in one terminal session, then open a new terminal window, the alias will not be recognized in the new window.

示例:如果你在一个终端会话中定义了alias ls='ls -al',然后打开一个新的终端窗口,那么在新窗口中将无法识别这个别名。

6. Conclusion(结论)

The Linux alias command can greatly simplify the command-line interface and increase productivity (生产率)by reducing the time and effort required to type long or complex commands. With a good understanding of how to create, use, and manage aliases, you’re well on your way to becoming a more efficient Linux user.
Linux的alias命令可以大大简化命令行界面,并通过减少输入长的或复杂的命令所需的时间和努力来提高生产力。通过对如何创建、使用和管理别名的良好理解,你将很快成为一个更有效率的Linux用户。

这篇关于Linux alias命令(为复杂命令创建别名,其中命令可带选项或参数)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/760306

相关文章

linux-基础知识3

打包和压缩 zip 安装zip软件包 yum -y install zip unzip 压缩打包命令: zip -q -r -d -u 压缩包文件名 目录和文件名列表 -q:不显示命令执行过程-r:递归处理,打包各级子目录和文件-u:把文件增加/替换到压缩包中-d:从压缩包中删除指定的文件 解压:unzip 压缩包名 打包文件 把压缩包从服务器下载到本地 把压缩包上传到服务器(zip

Andrej Karpathy最新采访:认知核心模型10亿参数就够了,AI会打破教育不公的僵局

夕小瑶科技说 原创  作者 | 海野 AI圈子的红人,AI大神Andrej Karpathy,曾是OpenAI联合创始人之一,特斯拉AI总监。上一次的动态是官宣创办一家名为 Eureka Labs 的人工智能+教育公司 ,宣布将长期致力于AI原生教育。 近日,Andrej Karpathy接受了No Priors(投资博客)的采访,与硅谷知名投资人 Sara Guo 和 Elad G

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

如何在页面调用utility bar并传递参数至lwc组件

1.在app的utility item中添加lwc组件: 2.调用utility bar api的方式有两种: 方法一,通过lwc调用: import {LightningElement,api ,wire } from 'lwc';import { publish, MessageContext } from 'lightning/messageService';import Ca

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

30常用 Maven 命令

Maven 是一个强大的项目管理和构建工具,它广泛用于 Java 项目的依赖管理、构建流程和插件集成。Maven 的命令行工具提供了大量的命令来帮助开发人员管理项目的生命周期、依赖和插件。以下是 常用 Maven 命令的使用场景及其详细解释。 1. mvn clean 使用场景:清理项目的生成目录,通常用于删除项目中自动生成的文件(如 target/ 目录)。共性规律:清理操作

4B参数秒杀GPT-3.5:MiniCPM 3.0惊艳登场!

​ 面壁智能 在 AI 的世界里,总有那么几个时刻让人惊叹不已。面壁智能推出的 MiniCPM 3.0,这个仅有4B参数的"小钢炮",正在以惊人的实力挑战着 GPT-3.5 这个曾经的AI巨人。 MiniCPM 3.0 MiniCPM 3.0 MiniCPM 3.0 目前的主要功能有: 长上下文功能:原生支持 32k 上下文长度,性能完美。我们引入了