nfspwd.pl revision 677833bc953b6cb418c701facbdcf4aa18d6c44e
0N/A#! perl
2362N/A#
0N/A# ***** BEGIN LICENSE BLOCK *****
0N/A# Version: MPL 1.1/GPL 2.0/LGPL 2.1
0N/A#
0N/A# The contents of this file are subject to the Mozilla Public License Version
2362N/A# 1.1 (the "License"); you may not use this file except in compliance with
0N/A# the License. You may obtain a copy of the License at
2362N/A# http://www.mozilla.org/MPL/
0N/A#
0N/A# Software distributed under the License is distributed on an "AS IS" basis,
0N/A# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
0N/A# for the specific language governing rights and limitations under the
0N/A# License.
0N/A#
0N/A# The Original Code is the Netscape Portable Runtime (NSPR).
0N/A#
0N/A# The Initial Developer of the Original Code is
0N/A# Netscape Communications Corporation.
0N/A# Portions created by the Initial Developer are Copyright (C) 1998-2000
2362N/A# the Initial Developer. All Rights Reserved.
2362N/A#
2362N/A# Contributor(s):
0N/A#
0N/A# Alternatively, the contents of this file may be used under the terms of
0N/A# either the GNU General Public License Version 2 or later (the "GPL"), or
0N/A# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
0N/A# in which case the provisions of the GPL or the LGPL are applicable instead
0N/A# of those above. If you wish to allow use of your version of this file only
0N/A# under the terms of either the GPL or the LGPL, and not to allow others to
0N/A# use your version of this file under the terms of the MPL, indicate your
0N/A# decision by deleting the provisions above and replace them with the notice
0N/A# and other provisions required by the GPL or the LGPL. If you do not delete
0N/A# the provisions above, a recipient may use your version of this file under
0N/A# the terms of any one of the MPL, the GPL or the LGPL.
0N/A#
0N/A# ***** END LICENSE BLOCK *****
0N/A
0N/Arequire "fastcwd.pl";
0N/A
0N/A$_ = &fastcwd;
0N/Aif (m@^/[uh]/@o || s@^/tmp_mnt/@/@o) {
0N/A print("$_\n");
0N/A} elsif ((($user, $rest) = m@^/usr/people/(\w+)/(.*)@o)
0N/A && readlink("/u/$user") eq "/usr/people/$user") {
0N/A print("/u/$user/$rest\n");
0N/A} else {
0N/A chop($host = `hostname`);
0N/A print("/h/$host$_\n");
0N/A}
0N/A