Tagged Questions

2
votes
2answers
161 views

Bash quoting of current path (pwd)

Dear lazyweb, 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 ' …
2
votes
1answer
134 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 …
2
votes
2answers
286 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 …
2
votes
9answers
832 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 …