shift-0.1.0.0: bash/teleport
#!/bin/bash
OUTPUT=`teleport-hask $@`
# return code 2 is used to indicate that the shell script
# should use the output to warp to
if [[ $? -eq 2 ]]; then
cd "$OUTPUT"
else
echo "$OUTPUT"
fi
#!/bin/bash
OUTPUT=`teleport-hask $@`
# return code 2 is used to indicate that the shell script
# should use the output to warp to
if [[ $? -eq 2 ]]; then
cd "$OUTPUT"
else
echo "$OUTPUT"
fi