debian-galaxy-a20e/rootfs/var/lib/dpkg/info/readline-common.postinst

14 lines
205 B
Plaintext
Raw Normal View History

2026-08-27 13:48:54 +00:00
#! /bin/sh -e
install_from_default() {
if [ ! -f $2 ]; then
cp -p $1 $2
fi
}
if [ "$1" = "configure" ] && [ "$2" = "" ]; then
install_from_default /usr/share/readline/inputrc /etc/inputrc
fi