Pages

Monday, October 25, 2010

உபுண்டுவில் ஒரு சிறிய script

உபுண்டுவில் நம்முடைய பெயருடன் good day/good morning என்று செய்தி வருவதற்கு ஒரு சிறிய script.

கீழ்கண்ட வரிகளை காப்பி செய்து ஒரு கோப்பில் பேஸ்ட் செய்து செமிக்கவும். உதாரணமாக gday.sh என்று வைத்துக்கொள்ளவோம்.

#!/bin/bash
# Shell Script to ask user his/her name and then display it with a
# GoodDay/Good morning message
# -----------------------------------------------------

echo "Hi! I'm $(hostname) computer!!"
echo -n "May I know your name please ? "
read yourname
echo "Good Day $yourname"

பின்னர் டெர்மினலில்

arulmozhi@arulmozhi-945GZM-S2:~$ cd Desktop
arulmozhi@arulmozhi-945GZM-S2:~/Desktop$ sudo chmod +x gday.sh
[sudo] password for arulmozhi:
arulmozhi@arulmozhi-945GZM-S2:~/Desktop$ ./gday.sh

இதன் விடை

Hi! I'm arulmozhi-945GZM-S2 computer!!
May I know your name please ? arulmozhi r
Good Day arulmozhi r

arulmozhi@arulmozhi-945GZM-S2:~/Desktop$

நான் இந்த கோப்பினை மேசையின் மீது வைத்திருக்கிறேன்.


2 comments:

Jayadev Das said...

இதன் பயன் பாடு என்ன?

arulmozhi r said...

வாருங்கள் ஜெயதேவ் இது சிறிய நிரல்கள் கற்றுக்கொள்பவர்களுக்கு உதவும்.