helloworld.sh
#!/bin/bash
#Description:function to output helloworld
function helloworld {
echo "Hello World"
}
helloworld
验证:
[root@logstash ~]# sh helloworld.sh
Hello World
[root@logstash ~]#
helloworld.sh
#!/bin/bash
#Description:function to output helloworld
function helloworld {
echo "Hello World"
}
helloworld
验证:
[root@logstash ~]# sh helloworld.sh
Hello World
[root@logstash ~]#