how can I combine these lines

后端 未结 4 1187
轻奢々
轻奢々 2021-01-24 03:44

How can I combine these lines (NOTE: this is just an excerpt from a much larger file):

interface GigabitEthernet0/0
 no ip proxy-arp
interface GigabitEthernet0/0         


        
4条回答
  •  长发绾君心
    2021-01-24 04:22

    while IFS= read line1 && IFS= read line2; do
        printf "%s | %s\n" "$line1" "$line2"
    done < file.txt
    

提交回复
热议问题