Tagged Questions
The pwd tag has no wiki summary.
16
votes
6answers
16k views
7
votes
4answers
1k views
How to run 'cd' in shell script and stay there after script finishes?
I used 'change directory' in my shell script (bash)
#!/bin/bash
alias mycd='cd some_place'
mycd
pwd
pwd prints some_place correctly, but after the script finished my current working directory ...
4
votes
3answers
950 views
How does linux-kernel read proc/pid file?
How and Where does linux-kernel read proc/pid file which shows all processes in the system. I found linux-source-2.6.31/fs/proc/ Here there are files, but it is hard to understand because it is really ...
3
votes
3answers
752 views
Extract the last directory of a pwd output
How do I extract the last directory of a pwd output? I don't want to use any knowledge of how many levels there are in the directory structure. If I wanted to use that, I could do something like:
...
2
votes
7answers
60 views
Tools built into the shell
I was wondering about tools that are built into the bash shell. For example, type pwd tells me that pwd is built into the shell.
whereis pwd
/bin/pwd /usr/include/pwd.h /usr/share/man/man1/pwd.1.gz
...
2
votes
2answers
365 views
What's the difference between unix built-in `pwd` command and it's $PWD environment variable?
Here's the case.
I have a directory call :-
%/home/myname/
I did a soft link in that directory:-
%cd /home/myname/
%ln -s /home/others/ .
Now, I cd into others/ from /home/myname/
Here's the ...
2
votes
6answers
337 views
Unix softlinks and paths
I am somewhat confused how soft links work in unix. See the example.
% cd /usr/local/
% ls -la
total 6
drwxr-xr-x 2 root root 512 Jan 19 15:03 .
drwxr-xr-x 41 root sys ...
2
votes
2answers
345 views
List all files in a directory with abosolute paths (excluding directories)
I've currently got:
ls -1 $(pwd)/*
Gives me all the files in a directory with absolute paths - but formats it with the directory at the start of each list of files.
Is there a way just to get a ...
1
vote
2answers
282 views
Adding directory to PATH through Makefile
I'm having some trouble in exporting the PATH I've modified inside the Makefile into the current Terminal.
I'm trying to add to the PATH, the bin folder inside wherever the Makefile directory is.
...
1
vote
2answers
137 views
Please explain . ./ab_project_setup.ksh $(pwd) statement
Please explain the meaning of this statement
. ./ab_project_setup.ksh $(pwd)
1
vote
2answers
233 views
How do I change my pwd to the real path of a symlinked directory?
Here's a rather elementary *nix question:
Given the following symlink creation:
ln -s /usr/local/projects/myproject/ myproject
... from my home directory /home/jvf/, entering the myproject symlink ...
1
vote
2answers
218 views
How to force an ImportError on development machine? (pwd module)
I'm trying to use a third-party lib (docutils) on Google App Engine and have a problem with this code (in docutils):
try:
import pwd
do stuff
except ImportError:
do other stuff
I want ...
1
vote
2answers
303 views
Unable to pbcopy at Vim's ED editor
I have tried unsuccessfully to copy the pwd to pbcopy as follows
pwd | !pbcopy
How can you copy your path in Vim's ED editor (: -mode)?
0
votes
1answer
24 views
matlab javaclasspath() not working in mac
Here is the matlab code:
javaclasspath(pwd); % set java path to current working directory
% call the java function
Result = googleTrend.TrendDataExtractor.ExtractData(Email, Password, word, from, ...
0
votes
2answers
26 views
how to get the ino from the current folder?
How to get the ino of the current folder you actually are in, with a unix command?
or whether a man, that could be of any use could be provided..
0
votes
0answers
26 views
How to *force* a program to run in a different directory than the one it wants to be in
Somehow LittleSpaceDuo insists on running in the directory it's executable is stored in rather than the pwd. The only thing that works is using a hard link. So how do I do it?
0
votes
2answers
62 views
How to get part of path using linux commands
Need get part of path, for example
"/home/server/folder1/rev.1111/bin"
Needed part is "rev.1111"
I`ll try to parse by PWD & grep commands, but I am newbie on linux and I cant do this.
0
votes
3answers
75 views
Is there a clean way to check if a given user exists on a computer through python?
Currently I am using pwd.getpwall(), which shows me the entire password database. But I just want the users accounts of the computer. And with using getpwall() I am unable to do this ...
if 'foo' in ...
0
votes
2answers
84 views
Bash or-equals ||= like Ruby
Does Bash have something like ||= ?
I.e., is there a better way to do the following:
if [ -z $PWD ]; then PWD=`pwd`; fi
I'm asking because I get this error:
$ echo ${`pwd`/$HOME/'~'}
-bash: ...
0
votes
4answers
271 views
Strange `pwd` output from perl
I have a very short tutorial perl script:
#!/usr/bin/perl
print "The date is ",`date`;
print "The date is `date`",".\n";
$directory=`pwd`;
print "\nThe current directory is $directory.";
and the ...
0
votes
1answer
189 views
where I can find the python pwd module?
I use it on linux but now I try to run my application in windows and can not find
I'm using python 2.6.6
0
votes
1answer
216 views
Unix: command to strip white space characters
When I do the following unix command:
pwd | pbcopy
is there something I can add to the command so that the string copied to my clipboard does not have any trailing whitespace?
(fyi: The reason I ...
0
votes
3answers
249 views
shell built in pwd versus /bin/pwd
I would like to know the code implementation of built-in pwd and /bin/pwd especially when the directory path is a symbolic link.
Example:
hita@hita-laptop:/home$ ls -l
lrwxrwxrwx 1 root root 31 ...
0
votes
4answers
114 views
What is the `pwd` of a Mac bundled app?
I'm running a GLFW app (that I wrote in C++)
I run it as follows:
./prog.app/Contents/MacOS/prog # from the command line
However, my code can't read relative-pathed files properly.
So I believe ...