Some combat tips (Update)

  • Directory or frequently used commands, use the alias, reduce the amount of typing

    # 显示所有的别名
    alias -p
    
    # 创建
    alias gopro='cd /root/username/dir/project'
    alias pidpy='ps -ef | grep python'
    
    # 取消
    unalias gopro

Guess you like

Origin www.cnblogs.com/wangjiale1024/p/11293772.html