로그 파일이 있는데 30000 줄 이상입니다. "도메인"이라는 이름을 찾아 CSV 파일로 저장해야하지만 저장 후 CSV 파일의 모든 행에 CSV 파일 맨 처음에 입력 파일의 경로와 파일 이름이 추가되었습니다. 경로와 입력 파일 이름이 필요하지 않은 경우 CSV 파일에 추가하려면 어떻게해야합니까?
예:
Input
#cat /home/log/any.log
any things..domain, anything
any things..domain, anything
any things..domain, anything
grep "domain" /home/logs/any.log > newfile.csv
Output:
#cat newfile.csv
/home/logs/any.log:domain
/home/logs/any.log:domain
/home/logs/any.log:domain
#----My requirement output is:
cat newfile.csv
domain
domain
domain
친절하게 알고, 누군가 알고 있다면 도와주세요
man cut
... 아프게 들린다.