Skip to content

Commit 9997b5b

Browse files
committed
Use rlwrap to enable line editing in sqlplus
The rlwrap provides following features missing in sqlplus: * line editing * command history * tab completion (with plugins) To make magic happen simply run the following (or make an alias) rlwrap sqlplus
1 parent bac18f6 commit 9997b5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ADD init.ora /
1111
ADD initXETemp.ora /
1212

1313
# Prepare to install Oracle
14-
RUN apt-get update && apt-get install -y -q libaio1 net-tools bc curl && \
14+
RUN apt-get update && apt-get install -y -q libaio1 net-tools bc curl rlwrap && \
1515
apt-get clean && \
1616
rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* &&\
1717
ln -s /usr/bin/awk /bin/awk &&\

0 commit comments

Comments
 (0)