Friday, April 1, 2016
Linux Bash Shell Script Command Line Argument and Read Line Data in Separate Variables
April 01, 2016
bash
,
beginner
,
code
,
command line argument
,
explanation
,
line by line read
,
linux
,
read in separate variables
,
shell
,
tutorial
,
while loop
How the code below works:
The first code reads the file line by line that was passed in as the first argument.The second code reads line into three variables where in each line there are three string separated by space.
Code To Read Argument File From Terminal line by line:
Save the code in a file named "TerminalArgumentFileRead.sh".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Pass arguments of txt file via command line | |
while read line | |
do | |
echo $line | |
done < "$1" |
Running the Code:
Just type the code below in terminal. Make sure to cd into that directory if you have not opened the terminal in that directory. Make sure to create the "log.txt" file in the same directory as the shell script file.bash TerminalArgumentFileRead.sh log.txt
Code To Read Argument File From Terminal in Three Variables:
Save the code in a file named "ReadLineInThreeVariables.sh".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while read ip datee timee | |
do | |
echo "Details:" | |
echo $ip | |
echo $datee | |
echo $timee | |
echo "" | |
done < "$1" |
Running the Code:
Just type the code below in terminal. Make sure to cd into that directory if you have not opened the terminal in that directory. Also make sure the argument file you are passing exist and formatted in the aforementioned way.bash ReadLineInThreeVariables.sh log.txt
Sample Input File:
Save as "log.txt".
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
192.1.4.09 10:30 Arsenal | |
110.13.5.67 5:12 Chelsea | |
192.1.45.67 23:21 Man United | |
199.13.8.23 8:33 Man city | |
172.11.22.2 18:45 Arsenal | |
133.13.8.23 10:00 Moon colony | |
112.11.22.2 8:00 Mars colony | |
103.13.8.23 9:00 Jupiter colony | |
12.11.22.2 8:59 Europa colony |
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment