如果您是 Linux 操作系统爱好者或正在将自己定义为一个爱好者,那么与 shell 脚本交叉路径是完全不可避免的。根据定义,shell 脚本是设计用于在 Unix/Linux shell 环境中执行的程序。
我们可以将命令行解释器 ( shell ) 与诸如打印文本、程序执行和文件操作等脚本操作相关联。流行的 Unix/Linux shell 环境的示例包括 GNU Bourne-Again Shell、Bourne Shell、Korn Shell 和 C Shell。
在 Linux 操作系统环境中运行的 Shell 脚本具有.sh
文件扩展名。考虑执行以下 shell 脚本文件:
$ ./linuxmi.sh
上述 shell 脚本的执行是非常简单基本的。如果您介意 shell 脚本的外观,那么本文适合您。它将引导我们完成安装,使用Gum创建迷人的 shell 脚本。
Gum预先打包了即用型和高度可配置的实用程序,使 Linux 用户能够实现几行代码来成功地提出适用的 shell 脚本和点文件别名。
在我们看到Gum工具能够实现什么之前,我们需要将它安装在我们的 Linux 操作系统发行版上。因为它不能在所有主要的 Linux 包管理器中访问。
我们将使用 Homebrew 包管理器(可安装在所有主要的 Linux 发行版上)。如果您尚未在 Linux 发行版上安装 Homebrew,请参阅我们在其上编写的 Homebrew 安装文章。
链接:在 Linux 上安装和使用 Homebrew 包管理器 https://www.linuxmi.com/linux-homebrew-brew.html
安装后,您可以使用Homebrew安装 Gum 工具。
linuxmi@linuxmi /home/linuxmi/www.linuxmi.com
⚡ brew install gum
$ echo 'deb [trusted=yes] https://repo.charm.sh/apt/ /' | sudo tee /etc/apt/sources.list.d/charm.list
$ sudo apt update && sudo apt install gum
$ sudo pacman -S gum
$ echo "在任意一张牌上取牌..." CARD=$(gum choose --height 15 {{A,K,Q,J},{10..2}}" "{♠,♥,♣,♦})
选择列表
$ gum input > linuxmi.txt
--password
标志。$ gum input --password > linuxmi.txt
$ gum write > linuxmi.txt
$ echo red >> colors.txt
$ echo green >> colors.txt
$ echo blue >> colors.txt
$ cat colors.txt | gum filter > selector.txt
$ gum confirm && rm new.txt || echo "无法定位文件"
$ gum spin --spinner dot --title "访问Linux迷网站www.linuxmi.com ..." -- sleep 10
显示 spinner
#!/bin/sh
$ chmod +x linuxmi.sh
$ ./linuxmi.sh
$ gum -h
$ gum format -h
好文推荐