2023-03-17 15:06:26 +00:00
|
|
|
bind \cH backward-kill-path-component
|
|
|
|
bind "[3;5~" kill-word
|
|
|
|
|
2023-05-21 20:18:09 +01:00
|
|
|
function backup --argument filename
|
|
|
|
cp $filename $filename.bak
|
|
|
|
end
|
2023-03-17 15:06:26 +00:00
|
|
|
|
2023-05-21 20:18:09 +01:00
|
|
|
function restore --argument file
|
|
|
|
mv $file (echo $file | sed s/.bak//)
|
|
|
|
end
|