Sponsored Content
Top Forums Shell Programming and Scripting Writing a bash script using host Post 302678367 by relsha on Friday 27th of July 2012 05:04:55 PM
Old 07-27-2012
Here's the entire script:

Code:
echo -n "Enter your IP address:  "
read IP address
host -a
echo

Everything I run it, it says host not found

Last edited by methyl; 07-27-2012 at 09:24 PM.. Reason: please use code tags
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Problems writing bash script to unzip files

I'm getting the following errors when I try to write a script to unzip some zip files. When I use the free trial copy of the commerical winzip program, however, they work fine. When I use -l or -t on unzip it indicates no errors. When I use the -o switch interactively from the bash command line it... (1 Reply)
Discussion started by: siegfried
1 Replies

2. Shell Programming and Scripting

Writing Bash script

Could anyone help me to Write a script in BASH Shell to determine the percentage of system disk space you are using. (1 Reply)
Discussion started by: boris
1 Replies

3. UNIX for Dummies Questions & Answers

Bash Script to check Remote Host Connection

Hi all, Can anyone tell/guide me how to check remote host is up/running using bash script? Thanks. Zulfiqar (5 Replies)
Discussion started by: zulfikarmd
5 Replies

4. Shell Programming and Scripting

Help with writing simple bash script

I want to write a bash script to: 1. Send an email from localhost to an external gmail account. (gmail then automatically forwards the message back to a pop account on the same server. 2. Script waits 3 minutes then checks to see if the email arrived, and if not, it sends an email to... (9 Replies)
Discussion started by: sallyanne
9 Replies

5. Homework & Coursework Questions

brand new user!.. Lost on BASH script writing

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I have just gotten into writing bash scripts for a class, part of the assignment is to read and be able to tell... (4 Replies)
Discussion started by: Byrang
4 Replies

6. Shell Programming and Scripting

Bash script to Automate the Virtual Host creation process!!

Hi all, This is my sample code in /etc/httpd/conf.d/applications.conf file currently we are creating subdomain mannually for every new subdomain. I want to automate this process througs bash script , how its possible. <VirtualHost *:80> ServerName google.com ServerAlias google.com... (5 Replies)
Discussion started by: anishkumarv
5 Replies

7. Shell Programming and Scripting

Mkbootfs writing to stdout in bash script

Hi, I need to automate some repacking tasks of a boot image for Android When in command line, I can use this command: mkbootfs /path/to/root > /path/to/ramdisk-recovery.cpio;However, if I try to run the command from a shell script under Ubuntu, it fails and outputs to stdout instead of the... (27 Replies)
Discussion started by: Phil3759
27 Replies

8. Shell Programming and Scripting

Question about writing a bash script

Hello, I want to write a bash script to delete the content after '#'. However, if '#' appears in a string with "", ignore this. For example, input file: test #delete "test #not delete" Output file: test "test #not delete" Does anyone know how to write this script? Thanks (1 Reply)
Discussion started by: jeffwang66
1 Replies

9. Shell Programming and Scripting

Writing hive scripts in bash script file

Hi, I wanted to load data from HDFS to HIVE by writing bash script. Description: I have written a bash script to validate the data and loaded validated data from local file system to HDFS. Now in the same bash script i wanted to load the data from HDFS to HIVE. How can i do it ? Also how tyhe... (2 Replies)
Discussion started by: shree11
2 Replies

10. Shell Programming and Scripting

Telnet Bash Script (Connection closed by foreign host.)

Hello Everyone, My following script is giving me problems, when the SIP trunk goes down and the telnet session is started and just when the command is about to complete the connection is closed then script restarts. I have noticed that as soon the script types in "sys re" or "sys rebo" or... (6 Replies)
Discussion started by: jeetz
6 Replies
GEOIP_ID_BY_NAME(3)							 1						       GEOIP_ID_BY_NAME(3)

geoip_id_by_name - Get the Internet connection type

SYNOPSIS
int geoip_id_by_name (string $hostname) DESCRIPTION
The geoip_id_by_name(3) function will return the Internet connection type corresponding to a hostname or an IP address. The return value is numeric and can be compared to the following constants: o GEOIP_UNKNOWN_SPEED o GEOIP_DIALUP_SPEED o GEOIP_CABLEDSL_SPEED o GEOIP_CORPORATE_SPEED PARAMETERS
o $hostname - The hostname or IP address whose connection type is to be looked-up. RETURN VALUES
Returns the connection type. EXAMPLES
Example #1 A geoip_id_by_name(3) example This will output the connection type of the host example.com. <?php $netspeed = geoip_id_by_name('www.example.com'); echo 'The connection type is '; switch ($netspeed) { case GEOIP_DIALUP_SPEED: echo 'dial-up'; break; case GEOIP_CABLEDSL_SPEED: echo 'cable or DSL'; break; case GEOIP_CORPORATE_SPEED: echo 'corporate'; break; case GEOIP_UNKNOWN_SPEED: default: echo 'unknown'; } ?> The above example will output: The connection type is corporate PHP Documentation Group GEOIP_ID_BY_NAME(3)
All times are GMT -4. The time now is 08:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy