$ IFS

Source: Internet
Author: User
Tags ftp access
Transferred from: http://bash.cyberciti.biz/guide/$ifs
  • The IFS is a special shell variable.
  • You can change the value of IFS as per your requirments.
  • TheInternal field separator(IFS) that is used for word splitting after expansion and to split lines into words with the read
    Builtin command.
  • The default value is<Space> <tab> <newline>. You can print it with the following command:
cat -etv <<<"$IFS"
  • IFS Variable is commonly used with read command, parameter expansions and command substitution.

From the bash man page:

The shell treats each character of IFS as a delimiter, and splits the results of the other expansions into words on these characters. if ifs is unset, or its value is exactly <space> <tab> <newline>, the default, then sequences of <space>, <tab>, and <newline>
At the beginning and end of the results of the previous expansions are ignored, and any sequence of IFS characters not at the beginning or end serves to delimit words. if ifs has a value other than the default, then sequences of the whitespace characters space
And tab are ignored at the beginning and end of the word, as long as the whitespace character is in the value of IFS (an IFS whitespace character ). any character in IFS that is not ifs whitespace, along with any adjacent ifs whitespace characters, delimits
A field. A sequence of IFS whitespace characters is also treated as a delimiter. If the value of IFS is null, no word splitting occurs.

  • The default value of IFS is a space, a tab, and a newline.
Example

Create a text file called/tmp/domains.txt as follows:

cyberciti.biz|202.54.1.1|/home/httpd|ftpcbzusernixcraft.com|202.54.1.2|/home/httpd|ftpnixuser

Create a shell script called setupapachevhost. Sh as follows:

#!/bin/bash# setupapachevhost.sh - Apache webhosting automation demo scriptfile=/tmp/domains.txt # set the Internal Field Separator to |IFS='|'while read -r domain ip webroot ftpusernamedo        printf "*** Adding %s to httpd.conf...\n" $domain        printf "Setting virtual host using %s ip...\n" $ip        printf "DocumentRoot is set to %s\n" $webroot        printf "Adding ftp access for %s using %s ftp account...\n\n" $domain $ftpusername done < "$file"

Save and close the file. Run it as follows:

chmod +x setupapachevhost.sh./setupapachevhost.sh

Sample outputs:

*** Adding cyberciti.biz to httpd.conf...Setting virtual host using 202.54.1.1 ip...DocumentRoot is set to /home/httpdAdding ftp access for cyberciti.biz using ftpcbzuser ftp account...*** Adding nixcraft.com to httpd.conf...Setting virtual host using 202.54.1.2 ip...DocumentRoot is set to /home/httpdAdding ftp access for nixcraft.com using ftpnixuser ftp account...

Where,

  • The read command reads input from $ file.
  • Each line of $ file is broken into tokens with the help of $ ifs.
  • The value of IFS (|) are used as token delimiters or separator for each line.
  • Each line is divided into four fields as domain, IP, webroot, and ftpusername.
  • The while loop is used to read entier $ file.
  • The first token (APACHE virtual hosting domain name) is saved to the actual variable called $ domain.
  • The second token (apache ip address) is saved to the actual variable called $ IP.
  • The third token (APACHE DocumentRoot) is saved to the actual variable called $ webroot.
  • The fourth token (FTP Server Username) is saved to the actual variable called $ ftpusername.
Ifs effect on the values of "$ @" and "$ *"
  • $ @ And $ * are
    Special command line arguments shell variables.
  • The $ @ holds list of all arguments passed to the script.
  • The $ * holds list of all arguments passed to the script.
  • Create a shell script called ifsargs. sh:
#!/bin/bash# ifsargs.sh - Cmd args - positional parameter demoecho "Command-Line Arguments Demo"echo "*** All args displayed using \$@ positional parameter ***"echo $@echo "*** All args displayed using \$* positional parameter ***"echo $*

Save and close the file. Run it as follows:

chmod +x ifsargs.sh./ifsargs.sh honda yamaha harley-davidson kawasaki

Sample outputs:

Command-Line Arguments Demo*** All args displayed using $@ positional parameter ***honda yamaha harley-davidson kawasaki*** All args displayed using $* positional parameter ***honda yamaha harley-davidson kawasaki
  • As you can see, the values of $ @ and $ * are same.
  • However, the values"$ @"And"$ *"Are different (noteDouble quotes).
  • Edit ifsargs. Sh as follows
#!/bin/bash# ifsargs.sh - Cmd args - positional parameter demo #### Set the IFS to | ####IFS='|' echo "Command-Line Arguments Demo" echo "*** All args displayed using \$@ positional parameter ***"echo "$@"        #*** double quote added ***# echo "*** All args displayed using \$* positional parameter ***"echo "$*"        #*** double quote added ***#

Save and close the file. Run it as follows:

./ifsargs.sh honda yamaha harley-davidson kawasaki

Sample outputs:

Command-Line Arguments Demo*** All args displayed using $@ positional parameter ***honda yamaha harley-davidson kawasaki*** All args displayed using $* positional parameter ***honda|yamaha|harley-davidson|kawasaki
  • $ @ Expanded as "$1" "$2" "$3"... "$ N"
  • $ * Expanded as "$ 1y $ 2y $ 3Y... $ N ", where Y is the value of IFS Variable I. e. "$ *" is one long string and $ ifs act
    An separator or token delimiters.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.