zoukankan      html  css  js  c++  java
  • shell下快捷键

    ### 1.快捷键

    • ^C   终止前台运行的程序
    • ^D   退出 等价于exit
    • ^L   清屏
    • ^A   光标移动到命令行的最前端
    • ^E   光标移动到命令行的最后端
    • ^U   删除光标前所有字符
    • ^K   删除光标后所有字符
    • ^R   搜索历史命令,利用关键词
    • Alt+.  引用上一个命令的最后一个参数
    • ESC . 引用上一个命令的最后一个参数

    2.历史命令

    • history
    • 光标上下键
    • ^R
    • !220   此命令要结合history
        335  ll Desktop
        336  ll Downloads
        337  cat asd
        338  asd
        339  ssh root@192.168.85.163~ !335~ ll Desktop
    • !$ 获取上个命令的参数
      ➜  ~ ll  Desktop
      total 2936
      drwxr-xr-x  3 guanbinbin  staff    96B  9  4 23:15 Tunnelblick VPN 配置样本
      -rw-r--r--@ 1 guanbinbin  staff    36K  6 23 23:13 th.jpeg
      -rw-r--r--@ 1 guanbinbin  staff   260B  6 17 23:20 学习目录
      -rw-r--r--@ 1 guanbinbin  staff   710K  6 16 12:40 屏幕快照 2019-06-16 下午12.40.54.png
      -rw-r--r--@ 1 guanbinbin  staff   710K  6 16 12:41 屏幕快照 2019-06-16 下午12.41.02.png
      -rw-r--r--@ 1 guanbinbin  staff   143B  6 16 20:41 学习目录的副本
      ➜  ~ !$
      ➜  ~ Desktop

    3.别名

       1.使用alilas可以查看当前那些命令使用了别名

    [root@Server-n93yom ~]# 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'
    [root@Server-n93yom ~]#

    在当前shell中起一个别名,打开tmp文件夹

    [root@Server-n93yom ~]# alias binbin='cd /tmp'     # unalias取消别名
    [root@Server-n93yom ~]# binbin
    [root@Server-n93yom tmp]#

     但是此命令在关闭shell后会失效;

    2. 若想永久有效,需要在/etc/bashrc文件中添加,此别名

        

  • 相关阅读:
    macOS 在终端中使用 adb命令,每次都要source ~/.bash_profile 才生效
    判断一个数是奇数还是偶数?
    使用SQL Server 扩展事件来创建死锁的跟踪
    sql server阻塞(block)处理
    sqlserver的CTE实现递归查询
    sqlserver 行转列
    sqlserver字符串多行合并为一行
    git alias 配置别名,让命令更简洁,提高效率
    vim 快捷键
    Git bash 命令行中的快捷键
  • 原文地址:https://www.cnblogs.com/guanbin-529/p/11504207.html
Copyright © 2011-2022 走看看