1
我有以下文件:
test
one
My
two
Hi
three
我需要一種方法來使用貓和sed給予以下輸出:
testone
Mytwo
Hithree
我怎樣才能在一個命令中實現這一點?
我有以下文件:
test
one
My
two
Hi
three
我需要一種方法來使用貓和sed給予以下輸出:
testone
Mytwo
Hithree
我怎樣才能在一個命令中實現這一點?
其中一個文件 「foo.txt」 中包含的文字:
cat foo.txt | sed -e 'N;s/\n//'
沒用使用sed的貓 –
的 'N; S/\ n //' foo.txt的 – russcollier
這應該讀'的sed -e' !$ N; S/\ n //''? – potong