mirror of
https://github.com/shokinn/.files.git
synced 2025-01-19 05:22:25 +00:00
10 lines
182 B
Plaintext
10 lines
182 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [[ -z "$1" ]] || [[ -z "$2" ]]; then
|
||
|
echo "Usage: $0 <event> <talk-id>"
|
||
|
echo "e.g.: $0 35c3 9766"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
kdenlive /video/fuse/$1/*/$2/project.kdenlive
|