6 lines
97 B
Text
6 lines
97 B
Text
|
#!/bin/bash
|
||
|
tmux select-window -t1
|
||
|
FILE="$1"
|
||
|
shift
|
||
|
exec nvr --remote "$@" $(readlink -f "$FILE")
|