1
vote
how do you echo a 4 digit unicode character in bash
% echo -e '\u2620'
☠
% $SHELL --version
zsh 4.3.4 (i386-redhat-linux-gnu)
…
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.
…
17
votes
BASH - Why does TEST=’ .* ‘ assign the listing of the current directory to TEST?
echo "$TEST"
If you don't quote the variable, it is expanded on the second command line.
…
3
votes
19
votes
How to manage Long Paths in Bash?
Consider using symbolic links. I have a ~/work/ directory where I place symlinks to all my current projects.
You may also use shell variables:
c='/Users/User/.. …
2
votes
Variables that work everywhere
How can I have my variables to work in every program?
You can't. Bash and cat are two separate programs. You set a bash variable, it doesn't mean that cat will …
8
votes
Why can I run a Bash function with the 000 permissions?
You are not running the script, you are sourcing (including) it. In order to source a script, you only need the read permission.
By the way, functions simp …
0
votes
bash stacktrace
~$ help caller
caller: caller [EXPR]
Returns the context of the current subroutine call.
Without EXPR, returns "$line $filename". With EXPR,
returns "$line $subroutine $filena …
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 …
1
vote
Why can’t I use job control in a bash script?
Job control is useful only when you are running an interactive shell, i.e., you know that stdin and stdout are connected to a terminal device (/dev/pts/* on Linux). Then, it makes sense to have som …
6
votes
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
Extract filename and extension in bash
~% FILE=prog.tar.gz
~% echo ${FILE%%.*}
prog
~% echo ${FILE%.*}
prog.tar
~% echo ${FILE#*.}
tar.gz
~% echo ${FILE##*.}
gz
…
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 …
