Search Results

Search: Posts Made By: stomp
2,918
Posted By stomp
echo "4 2 d c b 1 a b A b 1 B C a b c d" |...
echo "4 2 d c b 1 a b A b 1 B C a b c d" | ./clean.awk

# output
a b c d 1 2 4

clean.awk

#!/usr/bin/awk -f
{
for(i=1;i<=NF;i++)
a[tolower($i)]=1
}

END{
for(i in a)
...
Showing results 1 to 1 of 1

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