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/sh | |
# Mount a remote bup repository to a local directory with sshfs | |
# and 'bup fuse'. | |
# A convenience script to save on manual mount point creation etc. | |
# | |
# Usage: | |
# bup-rfuse <server:remotedir/repo-bup> <mountpoint> | |
# (mountpoint is created if it does not exist) | |
# or just with the defaults (see below) |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Cwd; | |
# Opening a new window. | |
# Fixed version of script from | |
# http://lists.schmorp.de/pipermail/rxvt-unicode/2012q3/001609.html | |
# by José Romildo Malaquias <malaquias at gmail.com> |