9 lines
66 B
Plaintext
9 lines
66 B
Plaintext
|
|
#! /bin/sh -e
|
||
|
|
|
||
|
|
case "$1" in
|
||
|
|
purge)
|
||
|
|
rm -f /etc/inputrc
|
||
|
|
esac
|
||
|
|
|
||
|
|
|