Search Results

6
votes

How do you determine what bash ls colours mean?

The colors are defined by the $LS_COLORS environment variable. Depending on your distro, it is generated automatically when the shell starts, using ~/.dircolors or / …
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

How do I run a program with a different working directory from current, from Linux shell?

Similar to David Schmitt's answer, plus Josh's …
3
votes

Variables as commands in bash scripts

Simply don't put whole commands in variables. You'll get into a lot of trouble trying to recover quoted arguments. Also: Avoid using all-capitals variable names in scripts. Ea …
2
votes

How to execute the output of a command within the current shell?

The eval command exists for this very purpose. eval $( ls | sed... ) More from the …
13
votes

What does <() do in Bash?

This is called process substitution. <(list) is a single syntax construct, the '<' character is not a separate symbol in this case. It …