dotfiles/bin/vim-recover

17 lines
300 B
Plaintext
Raw Normal View History

2019-05-03 08:45:06 +01:00
#!/usr/bin/env bash
2019-02-11 16:40:33 +00:00
# Check recovery directory from vim
if [ -f $1 ]; then
echo >&2 Cannot recover an existing file...
return 1
fi
2019-04-26 13:57:34 +01:00
backup_path=~/.nvim/backups/`echo $PWD/$1 | tr '/' '%'`
2019-02-11 16:40:33 +00:00
2019-04-26 13:56:39 +01:00
if [ ! -f "$backup_path" ]; then
2019-02-11 16:40:33 +00:00
echo >&2 Backup not found...
return 2
fi
2019-04-26 13:56:39 +01:00
cp $backup_path $1