Job's running too long, but don't want to terminate it. Before sending the process to background, I usually use ctrl-z in any tmux panel/window wihtout any problem, but for unknown reasons to me, this key combination suddenly stopped working for that particular panel. ctrl-z seems to work on other tmux panels though.
The job's currently running:
for f in *.webm; do ffmpeg -fflags +genpts -i "$f" -map 0 -s hd1080 -c:v libx264 -preset slower -crf 18 -b:a 64k "${f%.webm}".mp4; done
Any particular reason why ctrl-z would suddenly stop working?