done.csv中,形如 amoy9812@163.com的数据

 

#!/bin/sh
while read line
do
  ar=(${line//@/ })

  echo ${ar[0]}    #说明:分解出账号
  echo ${ar[1]}    #说明:分解出域名
done < done.csv

相关文章:

  • 2021-08-26
  • 2022-12-23
  • 2021-06-21
  • 2022-12-23
  • 2022-12-23
  • 2021-09-04
  • 2022-12-23
猜你喜欢
  • 2022-02-13
  • 2022-02-26
  • 2022-12-23
  • 2022-12-23
  • 2021-12-29
  • 2021-09-17
  • 2021-11-22
相关资源
相似解决方案