Tagged Questions

6
votes
18answers
5k views

What is the most elegant way to remove a path from the $PATH variable in Bash?

Or more generally, how do I remove an item from a colon-separated list in a Bash environment variable? I thought I had seen a simple way to do this years ago, using the more advanced forms of Bash ...
2
votes
2answers
250 views

removing a case clause: bash expansion in sed regexp: X='a\.b' ; Y=';;' sed -n '/${X}/,/${Y}/d'

I'm trying to remove a case clause from a bash script. The clause will vary, but will always have backslashes as part of the case-match string. I was trying sed but could use awk or a perl one-liner ...
2
votes
2answers
876 views

Bash quoting of current path (pwd)

I have encountered a most annoying problem that occurs on the PWD variable when the current path includes a space. My code looks somewhat like this: mycommand |sed -E ' s|mystuff|replacement| ; ...
1
vote
4answers
106 views

Bash variable expansion

I have a string made up of directories with a space after each one dirs="/home /home/a /home/b /home/a/b/c" the following code deletes the last directory in the string. dirs=${dirs% * } This ...
0
votes
3answers
58 views

Bash script parameter expansion

I have a script: #!/bin/bash SINGLE_FILE=/tmp/blah.file MULTIPLE_FILES=/tmp/{dir1,dir2}/*.file cp $SINGLE_FILE $MULTIPLE_FILES /tmp/newDir This will fail with: cp: cannot stat ...
0
votes
3answers
62 views

bash command expansion

The following bash command substitution does not work as I thought. echo $TMUX_$(echo 1) only prints 1 and I am expecting the value of the variable $TMUX_1.I also tried: echo ${TMUX_$(echo 1)} ...
0
votes
1answer
64 views

how to disable variable expansion when using bash “eval”

hi I have following propertie file (something.properties) SERVER1_PROPERTY1=123 SERVER1_PROPERTY2=${SERVER1_PROPERTY1}/123 and following bash script fetching one of the properties: #!/bin/bash ...
0
votes
3answers
526 views

bash: expanding variables with spaces

I have a file called "physics 1b.sh". In bash, if i try x="physics 1b" grep "string" "$x".sh grep complains: grep: physics 1b: No such file or directory. However, when I do grep "string" ...