如何 (有條件) 合併文字檔案 - Linux

Table of Contents

※ 引述《[email protected] (Astro v.s. Geo)》之銘言:
: 我試的結果是成功的
: tail -n +2 test1 test2 > test3
: 合併的部份會多一個==> test <==
: 但是是成功的


改用
tail --quiet -n +2 test1 test2 > test3
就不會有==> test1 <==
這樣的檔頭了

--

All Comments