/os-scripts/Function/mkcd.txt

http://os-scripts.googlecode.com/ · Plain Text · 6 lines · 6 code · 0 blank · 0 comment · 0 complexity · 2a7e05bfbf8dc1723c2036cd34c15b35 MD5 · raw file

  1. #Building in ~/.bashrc
  2. # mkdir, cd into it
  3. mkcd () {
  4. mkdir -p "$*"
  5. cd "$*"
  6. }