Created
January 28, 2024 17:53
-
-
Save pdp7/5885bb2f94617f0549b9b6a7f5a60a80 to your computer and use it in GitHub Desktop.
meld-on-sshfs.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -x | |
if [ $# -eq 0 ] | |
then | |
echo "usage: $0 <path>" | |
fi | |
MOUNT=/media/pdp7/thelio | |
THEAD=$MOUNT/dev/kernel/thead-kernel | |
MAIN=$MOUNT/dev/kernel/revyos | |
meld $THEAD/$1 $MAIN/$1 |
Author
pdp7
commented
Jan 28, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment