Explorar el Código

bashrc: add func mkcdd

pull/1/head
10sr hace 12 años
padre
commit
f45cdaf685
Se han modificado 1 ficheros con 11 adiciones y 1 borrados
  1. +11
    -1
      bashrc

+ 11
- 1
bashrc Ver fichero

@@ -547,7 +547,11 @@ tb(){
} }


mkcd(){ mkcd(){
if test -d "$1"
if test -z "$1"
then
echo "mkcd: usage: mkcd <dir>"
return 1
elif test -d "$1"
then then
echo "Dir \"$1\" already exists." echo "Dir \"$1\" already exists."
else else
@@ -557,6 +561,12 @@ mkcd(){
cd "$1" cd "$1"
} }


mkcdd(){
# make and change date directory
_d=`date +%Y%m%d-%H%M%S`
mkcd "$_d"
}

if test -n "$TMUX" && null type reattach-to-user-namespace if test -n "$TMUX" && null type reattach-to-user-namespace
then then
alias pbpaste="reattach-to-user-namespace pbpaste" alias pbpaste="reattach-to-user-namespace pbpaste"


Cargando…
Cancelar
Guardar