如何使用 bash 命令将字符串和数字从一行中分离出来。
示例:我有一个包含
string123anotherstr456thenanotherstr789
输出应该是:
string 123 anotherstr 456 thenanotherstr 789
command-line sed awk text-processing
awk ×1
command-line ×1
sed ×1
text-processing ×1