PATHS(3) BSD Library Functions Manual PATHS(3)NAME
paths -- default system paths
SYNOPSIS
#include <paths.h>
DESCRIPTION
The <paths.h> header defines some default paths used in NetBSD. All defined constants are prefixed with _PATH. The constants include:
o The default user search path set by login(1) and associated utilities such as rshd(8). This is defined by _PATH_DEFPATH and
includes directories such as /usr/bin and /usr/local/bin.
o Default paths for some utilities and device nodes. Examples include such paths as /dev/null (_PATH_DEVNULL), /dev/mem (_PATH_MEM),
and /etc/nologin (_PATH_NOLOGIN), among others.
o Paths for some default directories such as /dev (_PATH_DEV) and /tmp (_PATH_TMP) as well as paths for some miscellaneous utilities
such as csh(1), /bin/csh (_PATH_CSHELL).
SEE ALSO whereis(1), sysexits(3), types(3), hier(7)CAVEATS
The <paths.h> header is specific to NetBSD.
BSD April 8, 2011 BSD
Check Out this Related Man Page
SYSTEMD-PATH(1) systemd-path SYSTEMD-PATH(1)NAME
systemd-path - List and query system and user paths
SYNOPSIS
systemd-path [OPTIONS...] [NAME...]
DESCRIPTION
systemd-path may be used to query system and user paths. The tool makes many of the paths described in file-hierarchy(7) available for
querying.
When invoked without arguments, a list of known paths and their current values is shown. When at least one argument is passed, the path
with this name is queried and its value shown. The variables whose name begins with "search-" do not refer to individual paths, but instead
to a list of colon-separated search paths, in their order of precedence.
OPTIONS
The following options are understood:
--suffix=
The printed paths are suffixed by the specified string.
-h, --help
Print a short help text and exit.
--version
Print a short version string and exit.
EXIT STATUS
On success, 0 is returned, a non-zero failure code otherwise.
SEE ALSO systemd(1), file-hierarchy(7)systemd 237 SYSTEMD-PATH(1)
Hi !
I am using the which command.
#which ifortvars.sh
gives
/usr/local/sw/intel/bin/ifortvars.sh
but
#which cttsetup.csh
gives
no cttsetup.csh in (.....)
This file is in /usr/local/sw/vni/CTT6.0/bin/
I dont understand why it is not locating the file.
I think the "which" command gives... (3 Replies)
First time writer....take it easy on me.
I had a situation where I lost all paths to EMC disk. There was a failure on the EMC frame. After that was repaired, my server had a difficult time reclaiming all disks and veritas had marked the disks as failed. Veritas was confused. What are some of... (3 Replies)
I really just mess around in UNIX, for the most part, when I want to get something done. I can usually piece things together by searching for brief how-to's on Google, but the syntax errors in my following .sh file are really confusing me. I've got lots of programming experience in other places, so... (7 Replies)
Hi,
I have the following code which fails with return value 1.
sprintf(tmp, "rm -rf %s/* 2>/dev/null\n", dest);
rc = system( tmp );
rc is 1
The files exist and the paths are correct. I can do a manual copy but the application fails. All the calls to system() function fail with the same... (6 Replies)
Hi Chaps,
Does anyone know of a source of proprietary unix utilities. I often fall into the trap of testing a spot of code on my linux machine, posting the answer in the forums and then realise that the solution may only work with the GNU utils that I use, and not standard posix ones (if there are... (4 Replies)
hi experts,
i have a file
sample:
=======
000123 5 7 0008
00345 5 9 0004
how can i get an output as
123 5 7 8
345 5 9 4
thanks in an advance
subhendu (5 Replies)
I wasn't sure which forum to post this in. I am trying to compile logsurfer. After I run configure and the make, I get a complaint that paths.h is not found. I see three places where there is a paths.h:
/usr/include/pgsql/server/optimizer/paths.h... (3 Replies)
Hi,
There is requirement where I need to search if a particular directory name is present or not and if its present I need to collate the paths of the directories in a file.
I tried the below command
echo $(find /home/mqm -name "check")>>config.txt
Its saving the paths in one line(like... (7 Replies)
Hi,
I've noticed that mpathadm states that one of our luns has no active paths:
/dev/rdsk/c6t60000970000298700009533031324333d0s2
Total Path Count: 4
Operational Path Count: 4
/dev/rdsk/c6t60000970000298700009533031333037d0s2
... (3 Replies)
I am trying to do in a single line to take a list of paths separated by whitespace and then loop thru all the paths that were wrote but my regex is not working,
I have
echo {3} | sed 's/ //g' | while read EACHFILE
do
.....
But for some reason is only taking always the first path that I... (7 Replies)
I hope someone can help. I somewhat know what a mod_rewrite does which is URL rewiring. What I don't know is how to make the mod_rewrite to handle paths ?
Can this be why an AngularJS file is not being loaded ? (36 Replies)