zoukankan      html  css  js  c++  java
  • Using CDPATH environment to accelerate navigation among multiple commonly used directories.

    Using CDPATH environment to accelerate navigation among multiple commonly used directories.

    Using CDPATH environment to accelerate navigation among multiple commonly used directories.

    It is common that we want to change directory (cd command) between several directories, in which case the simple (cd -) command is not enough.

    That is where the CDPATH comes to help, you can set the most often used directories in ~/.bashrc file using the following format:

    export CDPATH=.:/home/wujing/work/huawei-test:/home/wujing/work/myprogram/researchprog/io-scheduling

    and then execute

    source ~/.bashrc

    The cd command will list the subdirectories inside the given paths.

    Author: wujing

    Created: 2014-10-14 二 20:08

    Emacs 24.3.1 (Org mode 8.2.6)

    Validate

  • 相关阅读:
    java中的subList
    值传递和引用传递
    java程序中有异常处理和没有异常处理的区别
    正则表达式
    poj 3187 三角数问题
    poj 2718 切数问题 穷竭搜索
    ACM 广度优化搜索算法总结
    poj 3669 火星撞地球问题 bfs算法
    poj 2251 三维地图最短路径问题 bfs算法
    ACM 深度优化搜索算法小总结
  • 原文地址:https://www.cnblogs.com/wujingcqu/p/4025123.html
Copyright © 2011-2022 走看看