我有以下形式CSV數據:linux命令讓行規定的格式
1 number tab one
2 number two
3 number three
現在我想將數據轉換爲以下形式:
1 number tab one
2 number two
3 number three
即我想第一個標籤保持原樣,但第二個和連續的標籤要用空格替換。是否有可能使用Linux命令(如sed等)。我知道我可以使用sed進行替換,但是可以使其跳過第一個選項卡空間並從第二個選項卡空間開始替換。
看起來你正在尋找'awk'。 –
@JimGarrison我試過sed's/^ [\ t] * //'但它似乎並不需要 –