Skip to content

Instantly share code, notes, and snippets.

@NapoleonWils0n
Created November 11, 2012 01:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NapoleonWils0n/4053265 to your computer and use it in GitHub Desktop.
Save NapoleonWils0n/4053265 to your computer and use it in GitHub Desktop.
ssh: meld over ssh
#!/bin/sh
# ==============================================
# = Using meld to compare directories over ssh =
# ==============================================
# Set up a ssh public private key and copy to your server
meld <(ssh 192.168.1.2 ls Desktop) <(ls Desktop)
@chanslor
Copy link

chanslor commented Jan 5, 2024

Dude, this is great! Thanks for sharing!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment