awk将一行数据转换成一列(多行)

echo “I am handson.” | awk ‘BEGIN{OFS="\n"}{print $1,$2,$3}’
其他方法:
echo “I am handson.” |xargs -n1

你可能感兴趣的:(awk将一行数据转换成一列(多行))