The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
41 views

shell tilde expansion does not work when passed as an option

I find tilde expansion does not work for the following situation: $ set -x $ ./print_arg.pl destdir=~/test + ./print_arg.pl 'destdir=/root/test' destdir=/root/test $ ./print_arg.pl dest-dir=~/test ...
0
votes
4answers
332 views

is there any way to make System.IO.Directory.GetFiles(string) look in the program's directory?

I'm trying to use string[] files = System.IO.Directory.GetFiles("~/Pictures/"); to search a folder in the program for picture files. This will later be used to randomly select a picture to display in ...
1
vote
1answer
90 views

Getting short path for ssh

I'm writing a shell script to be used with ssh/git. I want to get the present directory relative to home, if possible. The goal is to get the shortest path to be used with ssh, that is the path in ...
2
votes
1answer
138 views

cygwin tilde expansion not working in interactive shell

For some reason tilde expansion in Cygwin is not working for me at the prompt: $ ls ~ ls: cannot access : No such file or directory $ ls ~/bin (lists /bin not $HOME/bin) $ echo $HOME ...
0
votes
2answers
229 views

Tilde Expansion Doesn't Work When I Logged Into GUI

I'm using Ubuntu 11.10 and I have a strange problem. I have a few exports in my .profile file: export ANDROID_SDK_ROOT=~/workspace/android-sdk-linux_x86 export ...
0
votes
2answers
249 views

ASP.NET ~ Resolving

I have an asp.net application that has various text files it needs to load into a memory cache at start up. They are email body templates. I have them as files in my project in Visual studio, (with ...
0
votes
4answers
360 views

Bash problem with cd using tilde expansion

Say I have a folder called Foo located in /home/user/ (my /home/user also being represented by ~). I want to have a variable a="~/Foo" and then do cd $a I get -bash: cd: ~/Foo: No such file or ...
3
votes
2answers
486 views

Bash Tilde Expansion

Is it possible to add to the rules that bash uses for tilde expansion? I'd like to have ~data expand to /data/users/me, ~scratch expand to /data/scratch/me etc.. Is this possible, or does bash have ...
0
votes
7answers
329 views

How can I make perl recognize paths with '~'?

Possible Duplicate: How do I find a user's home directory in Perl? I'm running Ubuntu. Whenever I pass a Perl script a path that starts with ~ (e.g. ~/Documents/file.txt) it fails ...
18
votes
5answers
6k views

How to manually expand a special variable (ex: ~ tilde) in bash

I have a variable in my bash script whose value is something like this: ~/a/b/c Note that it is unexpanded tilde. When I do ls -lt on this variable (call it $VAR), I get no such directory. I want ...
4
votes
4answers
1k views

Why can't QFile read from the “~” directory?

I've tried the following short example to find out about a bug in a bigger program I am working on. It looks like QFile doesn't support unix (or the shell's) notation for the home directory: #include ...
1
vote
3answers
694 views

Environment variable expansion for C++

I need to get a %TEMP% environmental variable value string in Windows platform. If I try to use any methods(C / C++) (getenv (), …) to get this environmental variable, it returns with “~” in that ...
4
votes
5answers
1k views

have to determine all users home directories - tilde scripting problem

Assume someuser has a home directory /home/someuser NAME=someuser In bash - what expression to I use combining tilde (~) and $NAME to return the users home directory? HOMEDIRECTORY=~someuser echo ...
1
vote
1answer
819 views

Tilde-based Paths in Objective-C

In Objective-C, how do I go about converting tilde-based pathnames to full pathnames? That is, I'd like to convert from ~/sandbox to /Users/TheBobs/sandbox.
22
votes
6answers
13k views

How do I find a user's home directory in Perl?

I need to check whether a file in a user's home directory exists so use file check: if ( -e "~/foo.txt" ) { print "yes, it exists!" ; } Even though there is a file called foo.txt under the ...