Search Results

2
votes

Shell script - Two for loops and changing extension of file

Many things are wrong. Don't use dir or ls in for loops. Why eval? What you expected to get? You use $line without defining it. Don't use bc to do math, sin …
3
votes

Why does this bash script require me to press enter to continue?

I already answered in the other question. It was ffmpeg asking you to overwrite the output file. Giving unique names (with $i in the filename) and passing -y to ffmpeg solves the problem. …
5
votes

Timeout a command in bash without unnecessary delay

I think this is precisely what you are asking for: http://www.bashcookbook.com/bashin …