Remove everything after the first / including the first / for each line

前端 未结 3 1058
轮回少年
轮回少年 2021-01-25 06:52

I have a file with lots of host names. Some have a url part after the host that I\'d like to remove. In other words:

google.com
facebook.com
acme.com/news/frontp         


        
3条回答
  •  悲哀的现实
    2021-01-25 07:55

    Try doing this :

    cut -d '/' -f1 file.txt
    

    or

    awk -F/ '{print $1}' file.txt
    

    or

    perl -F/ -lane 'print $F[0]' file.txt
    

提交回复
热议问题