Search Results

Search: Posts Made By: mhuffs90171
1,977
Posted By citaylor
How about: sed -e 's/$/\n/g' -e 's/:/\n/g'...
How about:
sed -e 's/$/\n/g' -e 's/:/\n/g' infile
1,977
Posted By kshji
Awk cat file | awk -F : ' { for...
Awk

cat file | awk -F : '
{ for (i=1;i<=NF; i++) {
print $i
}
print ""
}'
ksh, bash, dash, ...

oifs="$IFS"
cat file | while read line
do
IFS=":"
...
Showing results 1 to 2 of 2

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