// ssh든 curl이든 리다이렉트 <() 명령어 결과를 이용하여 diff 의 비교대상으로 사용 가능

  
// 로컬 /etc/hosts 파일과 원격 서버의 /etc/hosts 파일 diff
[root@localhost]# diff /etc/hosts <(ssh root@mydomain cat /etc/hosts)
  
  
// 원격끼리 diff도 가능
[root@localhost]# diff <(curl http://www.google.co.kr 2>/dev/null) <(curl http://www.google.co.kr 2>/dev/null)

 

 

 

Posted by bloodguy
,