Commit b0010148 authored by vagrant's avatar vagrant

Add minimum requirement of 3 completed questions

parents
#!/bin/bash
awk -F , '{ print "insert into my fruits (code,name,color) values ("$1","$2","$3")" }' test_data.csv
1,Apple,Color is Red
2,Mango,Color is Orange
3,Banana,Color is Yellow
#!/bin/bash
awk -F : '$7 == "/bin/bash" {print "Home Directory: "$6}' /etc/passwd
#!/bin/bash
currNum=0
while [ $currNum -lt 50 ]
do
rem=$(( $currNum % 2 ))
if [ $rem -ne 0 ]
then
echo Number is : $currNum
fi
currNum=$(($currNum+1))
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment