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"
|
||||
elif [[ "$1" == "ls" ]]
|
||||
then
|
||||
awk "{ print \$1 }" `_gotofile` | column -t
|
||||
_awk "{ print \$1 }" `_gotofile` | column -t
|
||||
else
|
||||
cd $(awk "/^$1\s/ {print \$2;exit;}" `_gotofile`)
|
||||
cd $(_awk "/^$1\s/ {print \$2;exit;}" `_gotofile`)
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue