Add dot_local/spells/executable_audiosplit.sh

Add dot_local/spells/executable_ediff.sh
This commit is contained in:
Dorian Wood 2021-04-22 10:24:54 -04:00
parent 9998b99815
commit e1b4630e57
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
read -r -p "Input file: " INPUT
echo "$INPUT"
read -r -p "Start Time: " START
START="-ss ${START}"
echo "$START"
read -r -p "End Time: " END
END="-to ${END}"
echo "$END"
read -r -p "Output File: " OUTPUT
echo "$OUTPUT"

View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
# Simple script to send a merge command to emacs ediff
emacsclient --eval "(ediff \"$1\" \"$2\")"