shell 实现行列转换

#!/bin/bash

BEGIN { 
    FS="\n" 
    RS="" 
    ORS="" 
} 
{ 
   x=1 
   while ( x

另外,使用xargs可以轻松实现。

你可能感兴趣的:(shell 实现行列转换)