Advertisement
Advertisement
| 02.23.2008 at 11:10AM PST, ID: 23187422 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: |
#!/bin/sh
exec< $1
echo "data in $1 will be processed now."
input=[]
i = 0
while read line
do
input[$i] = $line;
i = $i + 1;
done
echo {$input[*]}
|