温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

lixux系统中bash命令的一些操作技巧分享

发布时间:2021-07-29 21:59:00 来源:亿速云 阅读:95 作者:chen 栏目:系统运维

本篇内容主要讲解“lixux系统中bash命令的一些操作技巧分享”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“lixux系统中bash命令的一些操作技巧分享”吧!

  tab键补全用法

  当我们敲击一下tab补全命令或文件名

  当我们敲击两下tab 列出相关的所有可选项

  cd -   相当于电视的回看

  有时候我们进入一个非常长的目录,后来又进入另一个目录,可能我们还行回到原来那个长,如果事先知道,我们可能输入pwd ,以便一会儿粘贴,有时候忘了输入pwd我们可能无奈还得输入一次长长的路径,我们可以输入一下cd -试试,直接回到上次进入的目录,就像是看电视时候的回看按钮。是不是很好用?

  查看以下例子

  [root@localhost /]# cd /tmp

  [root@localhost tmp]# pwd

  /tmp

  [root@localhost tmp]# cd /

  [root@localhost /]# pwd

  /

  [root@localhost /]# cd -

  /tmp

  [root@localhost tmp]# pwd

  /tmp

  Esc+.

  用法举例

  首先touch一个文件,然后编辑这个文件

  touch abcdefghijk

  敲入vi ,然后Esc+. 发现是不是abcdefghijk已经出现在vi后面\  

   转义字符用法

  系统中一些命令都是别名的功能,比如我们使用的rm、mv等,实际上是 rm -i和mv -i 。

  查看系统别名可以使用alias命令,例如以下系统默认的别名。

  [root@localhost testdir]# alias

  alias cp='cp -i'

  alias egrep='egrep --color=auto'

  alias fgrep='fgrep --color=auto'

  alias grep='grep --color=auto'

  alias l.='ls -d .* --color=auto'

  alias ll='ls -l --color=auto'

  alias ls='ls --color=auto'

  alias mv='mv -i'

  alias rm='rm -i'

  alias which='alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

  有时候我们删一个文件时候,会出现以下提示,  需要我们一个个确认,原因就是rm默认就是rm -i起了作用。

  [root@localhost testdir]# cd dir1

  [root@localhost dir1]# ls

  file1  file2  file3  file4

  [root@localhost dir1]# rm file1 file2 file3 file4rm: remove regular empty file ?.ile1?. y

  rm: remove regular empty file ?.ile2?. y

  rm: remove regular empty file ?.ile3?. y

  rm: remove regular empty file ?.ile4?. y

  我们可以使用转移字符使别名失效,使用如下,删除就不会再有提示确认了。

  [root@localhost testdir]# cd dir1

  [root@localhost dir1]# ls

  file1  file2  file3  file4

  [root@localhost dir1]# \rm file1 file2 file3 file4

到此,相信大家对“lixux系统中bash命令的一些操作技巧分享”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI