You need to use the contents of your file? Is so simple with table but how ??
This is the solution with bash:
#!/bin/sh
i=1; while read aline ; do
myarray[$i]=$aline; i=$(($i+1)) ;
done < your_file_name
for (( j=1 ; j <= ${#myarray[@]}; j++ )); do
echo ${myarray[$j]};
done
exit 0
Enjoy it
I wait for your comment and your suggestion.
0 commentaires:
Post a Comment