7 lines
125 B
Bash
Executable File
7 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
while read a b c d; do
|
|
b=$(echo "$b / 1024" | bc -l)
|
|
d=$(echo "$d / 1000" | bc -l)
|
|
echo "$a $b $c $d"
|
|
done
|