Tagged Questions
The tilde-expansion tag has no wiki summary.
11
votes
6answers
5k 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 ...
5
votes
3answers
1k 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 ...
3
votes
6answers
391 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 ...
2
votes
2answers
268 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 ...
2
votes
4answers
720 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
349 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 ...
1
vote
1answer
457 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.
0
votes
2answers
50 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
61 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
3answers
123 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 ...
0
votes
7answers
187 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 ...