Search Results

Search: Posts Made By: ichar
1,700
Posted By Franklin52
Or: awk -F: 'BEGIN{ printf("Enter the email...
Or:
awk -F: 'BEGIN{
printf("Enter the email and username :")
getline ans < "-"
split(ans,a," ")
}
!(a[1]==$1 && a[2]==$2)
' username.txt
1,700
Posted By pravin27
Hi, Try this, #!/bin/sh echo -n...
Hi,
Try this,

#!/bin/sh

echo -n "Enter email:-"
read a
echo -n "Enter name:-"
read b

c="$a:$b"

grep -v "$c" username.txt
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 04:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy