Tagged Questions
The variable-expansion tag has no wiki summary.
6
votes
2answers
2k views
How to expand variables in vim commands?
I'm trying to get a variable expanded in a command call. Here's what I have in my .vimrc:
command! -nargs=1 -complete=dir TlAddPm call s:TlAddPm(<f-args>)
function! s:TlAddPm(dir)
let flist ...
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
1answer
141 views
What's wrong with the following GNU make shell variable expansion?
On this line:
GCCVER:=$(shell a=`mktemp` && echo $'#include <stdio.h>\nmain() {printf("%u.%u\\n", __GNUC__, __GNUC_MINOR__);}' | gcc -o "$a" -xc -; "$a"; rm "$a")
I get:
*** ...
2
votes
2answers
251 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| ;
...
2
votes
1answer
971 views
Batch file FOR/f expansion
I have a file (directories.txt) with directory names, each on a single line and I like to expand the line
C:\Documents and Settings\%USERNAME%\My Documents
In my script to the real user name ...
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 ...
1
vote
3answers
338 views
Replace variables in text: Suggestions?
I'm looking for a nice template engine or short piece of code to expand Ant-like variables in a string in Java. Example:
String result = expand ("${firstName} ${familyName}", map);
It should at ...
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
2answers
110 views
Performance of variable expansion vs. sprintf in PHP
Regarding performance, is there any difference between doing:
$message = "The request $request has $n errors";
and
$message = sprintf('The request %s has %d errors', $request, $n);
in PHP?
I ...
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" ...
0
votes
1answer
443 views
Expanding arbitrary variable to a drive, path etc. in a DOS batch
I am using a dos batch which processes file using passed parameter:
process.bat "D:\PROJECT\TEST FILES\test.pdf" 72
process.bat:
gswin32c -r%2 -sDEVICE=jpeg -sOutputFile="%~n1-%%d.jpg" -- "%~1"
...