You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
312 B
19 lines
312 B
![]()
11 years ago
|
#!/bin/bash
|
||
|
|
||
|
sleep 0.5
|
||
|
echo
|
||
|
sleep 0.5
|
||
|
echo
|
||
|
sleep 0.5
|
||
|
echo
|
||
|
echo
|
||
|
echo
|
||
|
echo
|
||
|
echo "Enter additional kernel command line parameter (end with ctrl-d or .)"
|
||
|
while read -e -p "> " line; do
|
||
|
[[ "$line" == "." ]] && break
|
||
|
[[ "$line" ]] && printf -- "%s\n" "$line" >> /etc/cmdline.d/99-cmdline-ask.conf
|
||
|
done
|
||
|
|
||
|
exit 0
|