Bash 使用技巧

Bash 是 GNU 项目的 Bourne Again SHell,

具有交互式命令行编辑、支持它的体系结构上的作业控制、类似 csh 的功能

  • Bash 是免费软件,根据 GNU 通用公共许可证第 3 版的条款分发
  • Bash 是 GNU 操作系统的 shell 或命令语言解释器

如果不了解 shell 或命令语言解释器 建议百度一下了解个大概,以下不包括 shell 脚本相关内容

主要是对 bash 的定制化或配置有关




常用操作

首先需要知道的基本内容,确认版本号

  • 查看 bash 版本

      bash --version

    Bash 是 GNU / Linux 系统上的标准 shell,其中大部分使用的是 bash-4.4 或 bash-5.0

bash 的按键绑定

快捷键 描述
Ctrl+H 删除光标前的一个字符
Ctrl+U 删除光标前到行首的字符
Ctrl+C 终止一个正在运行的程序
Ctrl+D 终止输入,如果你在使用 shell 则退出
Ctrl+Z 通过将程序移动到后台来暂停程序,相关操作命令 jobs, fg, bg, kill
Ctrl+S 停止屏幕输出
Ctrl+Q 激活屏幕输出
Ctrl+Alt+Del 重启或关闭系统
Up 向上方向键 ↑ 在 bash 中查看命令历史
Ctrl-R 在 bash 的增量命令历史中搜索
Tab 自动补全,如果只是想输入 Tab 可以先按 Ctrl+V

常用判断命令

  • pwd: 显示当前/工作目录

  • whoami: 显示当前的用户名

  • id: 显示当前用户的身份

  • file 文件: 查看文件信息

  • 查命令位置

    • type -p command
    • which command

常用的权限设置

  • chmod 600 foo: 使其他人无法读写现有 "foo" 文件,并且所有人都无法执行该文件
  • chmod 644 foo: 使其他人对现有 "foo" 文件可读但不可写,并且所有人都无法执行该文件
  • chmod 755 foo: 使其他人对 "foo" 文件可读而不可写,并且所有人都能执行该文件

重要的环境变量

  • $LANG: 默认的语言环境,值的格式一般为 xx_YY.ZZZZ

    • xx: ISO 639 语言码
    • YY: ISO 3166 国家码
    • ZZZZ: 编码格式

    常见设置

    语言环境 描述
    zh_CN.UTF-8 汉语(中国)
    zh_TW.UTF-8 汉语(中国台湾)
    en_US.UTF-8 英语(美国)
    en_GB.UTF-8 英语(英国)
    fr_FR.UTF-8 法语(法国)
    de_DE.UTF-8 德语(德国)
    it_IT.UTF-8 意大利语(意大利)
    es_ES.UTF-8 西班牙语(西班牙)
    sv_SE.UTF-8 瑞典语(瑞典)
    pt_BR.UTF-8 葡萄牙语(巴西)
    ru_RU.UTF-8 俄语(俄国)
    ja_JP.UTF-8 日语(日本)
    ko_KR.UTF-8 韩语(韩国)
  • $PATH: 在 Shell 里输入命令的时候,会在此变量所包含的目录列表里进行搜索

  • $HOME: 指向用户目录,符号 ~ 表示当前用户目录

    关于 sudo 执行时,虽然用 root 权限,但此时 $HOME 并不是 /root/ 目录,可以通过 sudo -H command 使用 root 权限同时 $HOME 值为 "/root/"

常用管道重定向

命令常见用法 说明
command & 在子 shell 的后台 中执行 command
command1 | command2 通过管道将 command1 的标准输出作为 command2 的标准输入(并行执行)
command1 2>&1 | command2 通过管道将 command1 的标准输出和标准错误作为 command2 的标准输入(并行执行)
command1 ; command2 依次执行 command1 和 command2
command1 && command2 如果执行 command1 成功,按顺序执行 command2(如果 command1 和 command2 都执行成功,返回 success )
command1 || command2 如果执行 command1 不成功,按顺序执行 command2(如果 command1 或 command2 执行成功,返回 success )
command > foo 将 command 的标准输出重定向到文件 foo(覆盖)
command 2> foo 将 command 的标准错误重定向到文件 foo(覆盖)
command >> foo 将 command 的标准输出重定向到文件 foo(附加)
command 2>> foo 将 command 的标准错误重定向到文件 foo(附加)
command > foo 2>&1 将 command 的标准输出和标准错误重定向到文件 foo
command < foo 将 command 的标准输入重定向到文件 foo
command << delimiter 将 command 的标准输入重定向到下面的命令行,直到遇到 "delimiter"(here document)
command <<- delimiter 将 command 的标准输入重定向到下面的命令行,直到遇到 "delimiter"(here document,命令行中开头的制表符会被忽略)
  • delimiter 是一个标记符,原则上是随意,但一般使用 EOF
cat << EOF
Hello, my friend.
Bye.
EOF

个性化配置

其配置文件 .bashrc: 这个文件主要保存个人的一些个性化设置

# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples # If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac # don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth # append to the history file, don't overwrite it
shopt -s histappend # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000 # check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize # If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar # make less more friendly for non-text input files, see lesspipe(1)
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" # set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi # set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
esac # uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
# force_color_prompt=yes if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt # If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac # enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto' #alias grep='grep --color=auto'
#alias fgrep='fgrep --color=auto'
#alias egrep='egrep --color=auto'
fi # colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' # some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF' # Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package. if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi # enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi

启用其中的 force_color_prompt=yes 才能进行颜色渲染

有两种方法使得 .bashrc 文件生效

  • 每次修改 .bashrc 后,使用 source ~/.bashrc 使之生效

  • 也可以在 .bash_profile 文件中显式调用 .bashrc

    登陆 Linux 系统启动 bash 时首先会去读取 ~/.bash_profile 文件,就会使得 ~/.bashrc 马上生效

其中变量设置 shell 内容 -> 更多

字体配置

在文件 /etc/default/console-setup 通过命令

sudo dpkg-reconfigure console-setup
  • 要显示你的控制台字体,使用 showconsolefont 命令

文本工具

这里有一些在类 Unix 系统中经常使用到的标准文本处理工具

基础文本处理

  • cat: 连接文件并输出全部的内容
  • tac: 连接文件并反向输出
  • cut: 选择行的一部分并输出
  • head: 输出文件的开头
  • tail: 输出文件的末尾
  • sort: 对文本文件的行进行排序
  • uniq: 从已排序的文件中移除相同的行
  • tr: 转换或删除字符
  • diff: 对文件的行进行对比

使用基础正则表达式 BRE

  • ed: 是一个原始行编辑器
  • sed: 是一个流编辑器
  • grep: 匹配满足 pattern 的文本
  • vim: 是一个屏幕编辑器
  • emacs: 是一个屏幕编辑器,后期版本支持部分 BRE

使用扩展的正则表达式 ERE

  • awk: 进行简单的文本处理
  • gawk: 支持更多高级功能
  • egrep: 匹配满足多个 pattern 的文本
  • tcl: 可以进行任何你想得到的文本处理,经常与 tk 一起使用
  • perl: 可以进行任何你想得到的文本处理
  • pcregrep: 可以匹配满足 Perl 兼容正则表达式 PCRE 模式的文本

三剑客

其中使用频率最高的是:grep, sed, awk

  • grep: 适合单纯的查找或匹配文本
  • sed: 适合编辑匹配到的文本
  • awk: 适合用来从这种类型的文件中提取数据,或格式化文本

Bash 技巧的更多相关文章

  1. Bash技巧:使用 set 内置命令帮助调试 shell 脚本

    Bash技巧:使用 set 内置命令帮助调试 shell 脚本 霜鱼片发布于 2020-02-03   在 bash 中,可以使用 set 内置命令设置和查看 shell 的属性.这些属性会影响 sh ...

  2. Linux教程:Bash技巧,让chmod只修改某个目录下文件夹或者文件的权限

    用Linux的人都知道chmod -R 可以修改一个文件夹下的所有文件和文件夹的权限,但是这也存在着一个很大的弊端,那就是修改的是所有的文件和文件夹的权限,如果我只想修改文件或文件夹的权限该怎么办呢? ...

  3. Linux进阶:让效率翻倍的Bash技巧(一)

    http://blog.tpircsboy.com/tech/bash-skills-part1/

  4. 10 个提升效率的Linux小技巧

    您是否曾经惊讶于看到某人在 UNIX 中非常快速地工作,触发命令并快速地执行操作?是的,我碰到过几次,并且我一直都在向那些超级巨星开发者学习.在本文中,我想分享一些 UNIX 命令实践,这些实践是我在 ...

  5. python环境准备

    一.环境准备. 1.安装python3.5.2(勾选环境变量),python2.7.12 2.设置环境变量 (要求命令行输入python,进入python2命令行,打python3时,进入python ...

  6. Docker-核心笔记(含Dockerfile,Compose)

    Docker-核心笔记(含Dockerfile,Compose) 2017/03 Chenxin 参考 https://yeasy.gitbooks.io/docker_practice Docker ...

  7. Kubernetes 编排神器之 Helm

    什么是Kubernetes Helm?为什么要使用Helm? 前言 编写一堆Kubernetes配置文件是一件很麻烦的事情.对于一些容器,我们可能需要10多个yaml文件.维护它们是一个问题,而且在不 ...

  8. bash小技巧

    Linux 下shell基本上默认是 bash, 下面是我总结的一些技巧. &  后台运行程序 ,注意退出当前shell后 程序也会退出()   使用子shell, 比如 (cd ../../ ...

  9. Bash 使用技巧

    Bash 是我们经常与之打交道的 Shell 程序,本文针对其使用技巧进行了搜罗.相信在你看过这些内容之后,定会在 Bash 的世界里游刃有余. 从历史中执行命令 有时候,我们需要在 Bash 中重复 ...

  10. 【转】Linux 技巧: Bash 参数和参数扩展

    重点看下清单7 现在,很多 Linux® 和 UNIX® 系统上都有 bash shell,它是 Linux 上常见的默认 shell.通过本文,您将了解到如何在 bash 脚本中处理参数和选项,以及 ...

随机推荐

  1. protoc-gen-go: error:inconsistent package names: , prototest

    如果你已经安装proto ,以及go生成proto插件.但还是报这种错误,请看一下是否 protoc --go_out=./ *.proto 指令打错了

  2. 互联网软件的安装包界面设计-Inno setup

    https://blog.csdn.net/oceanlucy/article/details/50033773 "安装界面太丑了,不堪入目!" "这界面应该属于20年代 ...

  3. 一种基于E3处理器平台的NAS完整方案(从电脑组装到网站部署)

    一种基于E3处理器平台的NAS完整方案(从电脑组装到网站部署) 本文将简要简要介绍本人自建NAS的完整配置,截至发文此NAS已经连续良好运行一年,应当说具有良好的稳定性. 本文所述配置包含洋垃圾成分, ...

  4. js 留言板(带删除功能)

    本文所用的知识点:创建节点和添加节点 创建节点:document.createElement('li') 添加节点  node(父亲节点).appendChild(child)    child:子节 ...

  5. 引用(包含) import wxss样式

    引用(包含) 把模板定义到外部,然后多个页面间可以共用使用定义的模板WXML结构显示. https://developers.weixin.qq.com/miniprogram/dev/referen ...

  6. 解决:Maven PKIX path building failed: sun.security.provider.certpath

    在构建SpringBoot项目时,maven下载依赖会报 PKIX path building failed: sun.security.provider.certpath的错误. 使用https:/ ...

  7. EF INNER JOIN WHERE ORDER BY

    同时使用 join,where,order by. UpdaterDbContext db = new UpdaterDbContext(); // 按 t_server 表的 seq ASC 排序, ...

  8. 手机上玩 PC 游戏的开源项目「GitHub 热点速览」

    上周国产 3A 大作<黑神话:悟空>开启预售,同时公布游戏将于北京时间 2024.8.20 正式上线.这是一款由「游戏科学」开发的西游题材单机·动作·角色扮演游戏,它采用「虚幻引擎5」制作 ...

  9. mysql 联合表查询从表即使有索引依然ALL的一个原因-索引ALL解决,字符编码方式不一致导致全表搜索

    mysql 联合表查询从表即使有索引依然ALL的一个原因-索引ALL解决,字符编码方式不一致导致全表搜索那就是主表和从表的关联字段的编码方式不一样!!! 产生的现象: 解决之后,正确的使用了t2.or ...

  10. redisTemplate缓存方法template code

    import com.alibaba.fastjson.JSONObject; @Autowired private RedisTemplate redisTemplate; String PREFI ...