dotfiles/bin/vim-recover

17 lines
300 B
Plaintext
Raw Normal View History

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