আমি লগ ইন করার পরে কর্মীদের জন্য বার্তা প্রবেশের একটি সহজ উপায় পেতে চাই It এটি নির্দিষ্ট তারিখের হতে হবে না, যদিও এটি দুর্দান্ত be আমি ফাইল বিড়াল আগে পাঠ্য একাধিক লাইন।
সামান্য সাহায্য?
#!/bin/sh
DIALOG=${DIALOG=dialog}
tempfile=`tempfile 2>/dev/null` || tempfile=/tmp/test$$
trap "rm -f $tempfile" 0 1 2 5 15
$DIALOG --title "Bulletin Board Entry" --clear \
--inputbox "Enter Today's Very Important\n
employee information below:" 16 51 2> $tempfile
retval=$?
case $retval in
0)
echo "Input string is `cat $tempfile`";;
1)
echo "Cancel pressed.";;
255)
if test -s $tempfile ; then
cat $tempfile
else
echo "ESC pressed."
fi
;;
esac