Fix some more occurrances
This commit is contained in:
parent
4943f46f75
commit
e3450710fa
1 changed files with 2 additions and 2 deletions
|
@ -33,9 +33,9 @@ function goto {
|
||||||
echo " jumps to a record set by label"
|
echo " jumps to a record set by label"
|
||||||
elif [[ "$1" == "ls" ]]
|
elif [[ "$1" == "ls" ]]
|
||||||
then
|
then
|
||||||
awk "{ print \$1 }" `_gotofile` | column -t
|
_awk "{ print \$1 }" `_gotofile` | column -t
|
||||||
else
|
else
|
||||||
cd $(awk "/^$1\s/ {print \$2;exit;}" `_gotofile`)
|
cd $(_awk "/^$1\s/ {print \$2;exit;}" `_gotofile`)
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue