Increasing max-lisp-eval-depth has not helped. I tripled it and still
get errors. I also had to increase max-specpdl-size, which I increased
by 50%, but still not enough.
Looking at the tramp debug buffer, it seems there may be some sort of
looping going on. Either that or the way tramp works is VERY
inefficient as you see the same tests being repeated multiple times.
I have no tramp settings apart from the one necessary to turn on the
debug buffer. The remote system works fine when you login just through
ssh. Getting a directory listing or trying to view a file "appears" to
work, except once you have exceeded either of the two mentioned
variables, you tend to get lots of "File Error" messages and some
functions stop working correctly.
Other information which may be relevant includes -
1. Remote system is Tru64 on an ES40 (DEC/Compaq/HP Alpha)
2. The file I'm trying to view is owned by a different user than the
user I am connected as.
3. Connecting to this same server 4 years ago worked fine. There have
been nonly minor version changes to the OS in that time.
4. I'm connecting from a Linux box with a UTF8 locale. The Tru64
locale is C
5. The files I'm trying to view were created under MS Windows and
transferred to the Tru64 box using samba.
I was going to include the tramp debug buffer lines, however I just
realised that issueing two simple tramp commands - a remote directory
listing and then viewing one of the files from that directory, has
created a buffer with over 64,000 lines of debug output! I can send it
if you want, but thought it was too large and wasn't even sure if it
would get through the mail server etc. Therefore, I'm only providing
part of the log - up until it looks like it is repeating the same
commands over and over.
# Opening connection at erskine using scp...
# Waiting for prompts from remote shell
# Waiting 60s for prompt from remote shell
# Found remote shell prompt.
# Initializing remote shell
$ unset HISTORY
[01;35mtcross[01;[EMAIL PROTECTED];33merskine[00;00;00m ~$ $ unset correct
[01;35mtcross[01;[EMAIL PROTECTED];33merskine[00;00;00m ~$ $ unset
autocorrect
[01;35mtcross[01;[EMAIL PROTECTED];33merskine[00;00;00m ~$ $ exec env 'ENV='
'PS1=$ ' /bin/sh
# Waiting 30s for remote `/bin/sh' to come up...
$ $
# Setting up remote shell environment
$ stty -inlcr -echo kill '^U'
$ $ echo foo
foo
$ $ TERM=dumb; export TERM
$
# Checking remote host type for `send-process-string' bug
$ (uname -sr) 2>/dev/null
OSF1 V5.1
$
# Determining coding system
$ echo foo ; echo bar
foo
bar
$
# Waiting 30s for `HISTFILE=$HOME/.tramp_history; HISTSIZE=1; export HISTFILE;
export HISTSIZE'
$ HISTFILE=$HOME/.tramp_history; HISTSIZE=1; export HISTFILE; export HISTSIZE
$
# Waiting 30s for `set +o vi +o emacs'
$ set +o vi +o emacs
+o: bad option(s)
$
# Waiting 30s for `unset MAIL MAILCHECK MAILPATH'
$ unset MAIL MAILCHECK MAILPATH 1>/dev/null 2>/dev/null
$
# Waiting 30s for `unset CDPATH'
$ unset CDPATH
$
# Setting shell prompt
$ PS1='
///d12f3484f82742a700536b33cc55f535
'; PS2=''; PS3=''
$ echo ~root
~root
$ while read d; do if test -x $d/bash -a -f $d/bash; then echo tramp_executable
$d/bash; break; fi; done <<'EOF'
$ /usr/xpg4/bin
$ /bin
$ /usr/bin
$ /usr/sbin
$ /usr/local/bin
$ /usr/ccs/bin
$ /local/bin
$ /local/freeware/bin
$ /local/gnu/bin
$ /usr/freeware/bin
$ /usr/pkg/bin
$ /usr/contrib/bin
$ EOF
tramp_executable /bin/bash
# Starting remote shell `/bin/bash -norc -noprofile' for tilde expansion...
$ PS1='$ ' exec /bin/bash -norc -noprofile
$
# Setting remote shell prompt...
# Setting remote shell prompt...done
# Finding command to check if file exists
$ test -e / 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /\ this\ file\ does\ not\ exist\ 2>/dev/null; echo tramp_exit_status
$?
tramp_exit_status 1
# Finding a suitable `ls' command
# Checking remote `/usr/xpg4/bin/ls' command for `-n' option
$ test -x /usr/xpg4/bin/ls 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
# Checking remote `/bin/ls' command for `-n' option
$ test -x /bin/ls 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
# Testing remote command `/bin/ls' for -n...
$ /bin/ls -lnd / >/dev/null 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
# Testing remote command `/bin/ls' for -n...okay
# Using remote command `/bin/ls' for getting directory listings
$ tramp_set_exit_status () {
return $1
}
$ test -e /usr/xpg4/bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ ( test -d /bin 2>/dev/null; echo tramp_exit_status $? )
tramp_exit_status 0
$ test -e /usr/bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ ( test -d /usr/bin 2>/dev/null; echo tramp_exit_status $? )
tramp_exit_status 0
$ test -e /usr/sbin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ ( test -d /usr/sbin 2>/dev/null; echo tramp_exit_status $? )
tramp_exit_status 0
$ test -e /usr/local/bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ ( test -d /usr/local/bin 2>/dev/null; echo tramp_exit_status $? )
tramp_exit_status 0
$ test -e /usr/ccs/bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ ( test -d /usr/ccs/bin 2>/dev/null; echo tramp_exit_status $? )
tramp_exit_status 0
$ test -e /local/bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /local/freeware/bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /local/gnu/bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /usr/freeware/bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /usr/pkg/bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /usr/contrib/bin 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ PATH=/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/ccs/bin; export PATH
$ LC_TIME=C; export LC_TIME; echo huhu
huhu
$ mesg n; echo huhu
huhu
$ biff n ; echo huhu
huhu
$ unalias ls; echo huhu
bash: unalias: `ls': not an alias
huhu
$ ( test / -nt / )
$ tramp_test_nt () {
test -n "`find $1 -prune -newer $2 -print`"
}
$ tramp_uudecode () {
(echo begin 600 /tmp/tramp.$$; tail +2) | uudecode
cat /tmp/tramp.$$
rm -f /tmp/tramp.$$
}
$ while read d; do if test -x $d/perl5 -a -f $d/perl5; then echo
tramp_executable $d/perl5; break; fi; done <<'EOF'
$ /usr/xpg4/bin
$ /bin
$ /usr/bin
$ /usr/sbin
$ /usr/local/bin
$ /usr/ccs/bin
$ /local/bin
$ /local/freeware/bin
$ /local/gnu/bin
$ /usr/freeware/bin
$ /usr/pkg/bin
$ /usr/contrib/bin
$ EOF
$ while read d; do if test -x $d/perl -a -f $d/perl; then echo tramp_executable
$d/perl; break; fi; done <<'EOF'
$ /usr/xpg4/bin
$ /bin
$ /usr/bin
$ /usr/sbin
$ /usr/local/bin
$ /usr/ccs/bin
$ /local/bin
$ /local/freeware/bin
$ /local/gnu/bin
$ /usr/freeware/bin
$ /usr/pkg/bin
$ /usr/contrib/bin
$ EOF
tramp_executable /bin/perl
$ while read d; do if test -x $d/ln -a -f $d/ln; then echo tramp_executable
$d/ln; break; fi; done <<'EOF'
$ /usr/xpg4/bin
$ /bin
$ /usr/bin
$ /usr/sbin
$ /usr/local/bin
$ /usr/ccs/bin
$ /local/bin
$ /local/freeware/bin
$ /local/gnu/bin
$ /usr/freeware/bin
$ /usr/pkg/bin
$ /usr/contrib/bin
$ EOF
tramp_executable /bin/ln
$ id -u; id -g
213
15
$ test -e /apps/une/unereg/source/plsql/.dired 2>/dev/null; echo
tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/source/plsql/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
# Sending the Perl script `tramp_directory_files_and_attributes'...
$ tramp_directory_files_and_attributes () {
/bin/perl -e 'chdir($ARGV[0]) or printf("\"Cannot change to $ARGV[0]:
$''!''\"\n"), exit();
opendir(DIR,".") or printf("\"Cannot open directory $ARGV[0]: $''!''\"\n"),
exit();
@list = readdir(DIR);
closedir(DIR);
$n = scalar(@list);
printf("(\n");
for($i = 0; $i < $n; $i++)
{
$filename = $list[$i];
@stat = lstat($filename);
if (($stat[2] & 0170000) == 0120000)
{
$type = readlink($filename);
$type = "\"$type\"";
}
elsif (($stat[2] & 0170000) == 040000)
{
$type = "t";
}
else
{
$type = "nil"
};
$uid = ($ARGV[1] eq "integer") ? $stat[4] : "\"" . getpwuid($stat[4]) .
"\"";
$gid = ($ARGV[1] eq "integer") ? $stat[5] : "\"" . getgrgid($stat[5]) .
"\"";
printf(
"(\"%s\" %s %u %s %s (%u %u) (%u %u) (%u %u) %u %u t (%u . %u) (%u
%u))\n",
$filename,
$type,
$stat[3],
$uid,
$gid,
$stat[8] >> 16 & 0xffff,
$stat[8] & 0xffff,
$stat[9] >> 16 & 0xffff,
$stat[9] & 0xffff,
$stat[10] >> 16 & 0xffff,
$stat[10] & 0xffff,
$stat[7],
$stat[2],
$stat[1] >> 16 & 0xffff,
$stat[1] & 0xffff,
$stat[0] >> 16 & 0xffff,
$stat[0] & 0xffff);
}
printf(")\n");' "$1" "$2" "$3" 2>/dev/null
}
tramp_exit_status 0
# Sending the Perl script `tramp_directory_files_and_attributes'...done.
$ tramp_directory_files_and_attributes /apps/une/unereg/source/plsql/ string
(
("." t 3 "nboessle" "users" (17874 15820) (17845 38813) (17845 38813) 8192
16888 t (0 . 10647) (44407 43121))
(".." t 6 "nboessle" "users" (17874 15411) (16941 8947) (16941 8947) 8192 16888
t (0 . 3703) (44407 43121))
("ur_get_units.prc" nil 1 "unereg" "users" (17799 28972) (17580 35791) (17580
35791) 4171 33200 t (0 . 15590) (44407 43121))
("mailing_update.prc" nil 1 "jcoope24" "users" (17799 28972) (17580 35790)
(17580 35790) 5884 33200 t (0 . 11280) (44407 43121))
("ur_output_enrolment_data.prc" nil 1 "unereg" "users" (17799 28972) (17580
35791) (17580 35791) 7718 33200 t (0 . 15595) (44407 43121))
("getfield.fnc" nil 1 "jcoope24" "users" (17799 28972) (17580 35790) (17580
35790) 773 33200 t (0 . 11375) (44407 43121))
("ur_catalog.prc" nil 1 "jcoope24" "users" (17799 28972) (17580 35791) (17580
35791) 10221 33200 t (0 . 23232) (44407 43121))
("ur_log_activity.pkb" nil 1 "jcoope24" "users" (17799 28972) (17580 35791)
(17580 35791) 1916 33200 t (0 . 23571) (44407 43121))
("ur_log_activity.pks" nil 1 "jcoope24" "users" (17799 28973) (17580 35791)
(17580 35791) 298 33200 t (0 . 23572) (44407 43121))
("ur_cc_access.prc" nil 1 "jcoope24" "users" (17799 28973) (17580 35791) (17580
35791) 3612 33200 t (0 . 11380) (44407 43121))
("ur_edit_costcode.prc" nil 1 "jcoope24" "users" (17799 28973) (17642 59213)
(17642 59213) 23168 33200 t (0 . 11381) (44407 43121))
("ur_email_aliases_file_update.prc" nil 1 "jcoope24" "users" (17799 28973)
(17580 35791) (17580 35791) 8113 33200 t (0 . 11382) (44407 43121))
("ur_file_utilities.pkb" nil 1 "jcoope24" "users" (17799 28973) (17580 35791)
(17580 35791) 3138 33200 t (0 . 11384) (44407 43121))
("archive" t 3 "bgowar2" "users" (17799 28974) (17580 35790) (17580 35790) 8192
16893 t (0 . 15325) (44407 43121))
("ur_encrypt.fnc" nil 1 "jcoope24" "users" (17799 28975) (17580 35791) (17580
35791) 210 33200 t (0 . 11383) (44407 43121))
("ur_file_utilities.pks" nil 1 "jcoope24" "users" (17799 28975) (17580 35791)
(17580 35791) 413 33200 t (0 . 11385) (44407 43121))
("ur_get_authority.fnc" nil 1 "jcoope24" "users" (17799 28975) (17580 35791)
(17580 35791) 529 33200 t (0 . 11386) (44407 43121))
("ur_get_code.fnc" nil 1 "jcoope24" "users" (17799 28975) (17580 35791) (17580
35791) 340 33200 t (0 . 11387) (44407 43121))
("ur_get_period_description.fnc" nil 1 "jcoope24" "users" (17799 28975) (17580
35791) (17580 35791) 336 33200 t (0 . 11476) (44407 43121))
("ur_load_archived.prc" nil 1 "jcoope24" "users" (17799 28975) (17580 35791)
(17580 35791) 6017 33200 t (0 . 11389) (44407 43121))
("ur_accounts_utilities.pkb" nil 1 "jcoope24" "users" (17799 28975) (17716
9911) (17716 9911) 13916 33200 t (0 . 23577) (44407 43121))
("ur_change.pkb" nil 1 "jharrop" "users" (17866 36803) (17863 53283) (17863
53283) 47287 33252 t (0 . 30781) (44407 43121))
("ur_makesalt.fnc" nil 1 "jcoope24" "users" (17799 28975) (17580 35791) (17580
35791) 693 33200 t (0 . 11393) (44407 43121))
("ur_modems_file_update.prc" nil 1 "jcoope24" "users" (17799 28976) (17580
35791) (17580 35791) 8641 33200 t (0 . 11394) (44407 43121))
("ur_people_utilities.pkb" nil 1 "jcoope24" "users" (17843 63818) (17716 12529)
(17716 12529) 16034 33200 t (0 . 11395) (44407 43121))
("ur_people_utilities.pks" nil 1 "jcoope24" "users" (17799 28976) (17580 35792)
(17580 35792) 2458 33200 t (0 . 11396) (44407 43121))
("ur_person_account_file_load.prc" nil 1 "jcoope24" "users" (17799 28976)
(17580 35792) (17580 35792) 5426 33200 t (0 . 11397) (44407 43121))
("ur_reg_access.prc" nil 1 "jcoope24" "users" (17799 28976) (17758 30694)
(17758 30694) 22213 33200 t (0 . 11398) (44407 43121))
("ur_reg_account_remove.prc" nil 1 "jcoope24" "users" (17799 28976) (17660
54861) (17660 54861) 7707 33200 t (0 . 11399) (44407 43121))
("ur_reg_change.prc" nil 1 "unereg" "users" (17799 28976) (17580 35792) (17580
35792) 22393 33200 t (0 . 11400) (44407 43121))
("ur_reg_confirm.prc" nil 1 "jcoope24" "users" (17799 28976) (17580 35792)
(17580 35792) 4783 33200 t (0 . 11401) (44407 43121))
("ur_reg_create_special.prc" nil 1 "jcoope24" "users" (17866 36764) (17863
53566) (17863 53566) 25342 33200 t (0 . 11402) (44407 43121))
("ur_reg_edit_special.prc" nil 1 "jcoope24" "users" (17799 28976) (17743 55586)
(17743 55586) 25350 33200 t (0 . 11403) (44407 43121))
("ur_reg_lookup.prc" nil 1 "jcoope24" "users" (17799 28976) (17764 56858)
(17764 56858) 46835 33200 t (0 . 22940) (44407 43121))
("ur_reg_remove_expired.prc" nil 1 "jcoope24" "users" (17799 28976) (17737
10340) (17737 10340) 28848 33200 t (0 . 12451) (44407 43121))
("ur_reg_remove.prc" nil 1 "jcoope24" "users" (17799 28976) (17737 10324)
(17737 10324) 15331 33200 t (0 . 11406) (44407 43121))
("ur_get_regos.prc" nil 1 "unereg" "users" (17799 28976) (17580 35791) (17580
35791) 4046 33200 t (0 . 15599) (44407 43121))
("ur_reg_restore.prc" nil 1 "jcoope24" "users" (17866 36647) (17863 53369)
(17863 53369) 20747 33200 t (0 . 11408) (44407 43121))
("ur_change.pks" nil 1 "jharrop" "users" (17799 28976) (17758 30739) (17758
30739) 1620 33252 t (0 . 30792) (44407 43121))
("ur_reg_student.prc" nil 1 "unereg" "users" (17844 14449) (17580 35792) (17580
35792) 3196 33200 t (0 . 14951) (44407 43121))
("ur_reg_student_password.prc" nil 1 "jcoope24" "users" (17843 64163) (17613
23367) (17613 23367) 19790 33200 t (0 . 23491) (44407 43121))
("ur_reg_student_sorry.prc" nil 1 "jcoope24" "users" (17843 64488) (17580
35793) (17580 35793) 733 33200 t (0 . 11411) (44407 43121))
("ur_reg_uname_change.prc" nil 1 "jcoope24" "users" (17844 14586) (17729 27270)
(17729 27270) 21742 33200 t (0 . 11412) (44407 43121))
("ur_retired_page.prc" nil 1 "jcoope24" "users" (17799 28977) (17580 35793)
(17580 35793) 1558 33200 t (0 . 11413) (44407 43121))
("ur_set_primary.prc" nil 1 "jcoope24" "users" (17799 28977) (17635 46568)
(17635 46568) 7747 33200 t (0 . 11414) (44407 43121))
("ur_specials_file_update.prc" nil 1 "jcoope24" "users" (17799 28977) (17580
35793) (17580 35793) 15845 33200 t (0 . 11415) (44407 43121))
("ur_spec_to_staff.prc" nil 1 "jcoope24" "users" (17799 28977) (17580 35793)
(17580 35793) 11071 33200 t (0 . 11416) (44407 43121))
("ur_staff_codes_dblink_update.prc" nil 1 "jcoope24" "users" (17799 28977)
(17580 35793) (17580 35793) 5120 33200 t (0 . 11417) (44407 43121))
("ur_staff_dblink_update.prc" nil 1 "jcoope24" "users" (17866 36748) (17863
53505) (17863 53505) 13235 33200 t (0 . 11418) (44407 43121))
("ur_staff_jobs_dblink_update.prc" nil 1 "jcoope24" "users" (17799 28977)
(17580 35793) (17580 35793) 7057 33200 t (0 . 10838) (44407 43121))
("ur_staff_students_update.prc" nil 1 "jcoope24" "users" (17799 28977) (17580
35793) (17580 35793) 5983 33200 t (0 . 11420) (44407 43121))
("ur_students_dblink_update.prc" nil 1 "unereg" "users" (17866 36686) (17863
53429) (17863 53429) 28771 33200 t (0 . 21575) (44407 43121))
("ur_students_gateway.prc" nil 1 "jcoope24" "users" (17844 14684) (17580 35793)
(17580 35793) 1454 33200 t (0 . 11422) (44407 43121))
("ur_students_liability.prc" nil 1 "jcoope24" "users" (17799 28977) (17580
35793) (17580 35793) 3209 33200 t (0 . 11423) (44407 43121))
("ur_students_page_bottom.prc" nil 1 "unereg" "users" (17799 28977) (17580
35793) (17580 35793) 1973 33200 t (0 . 15011) (44407 43121))
("ur_students_page_top.prc" nil 1 "unereg" "users" (17799 28977) (17580 35793)
(17580 35793) 4017 33200 t (0 . 15021) (44407 43121))
("ur_student_utilities.pkb" nil 1 "jcoope24" "users" (17845 15150) (17635
47843) (17635 47843) 4816 33200 t (0 . 11427) (44407 43121))
("ur_student_utilities.pks" nil 1 "jcoope24" "users" (17845 15115) (17580
35793) (17580 35793) 1008 33200 t (0 . 11428) (44407 43121))
("ur_transactions_file_load.prc" nil 1 "jcoope24" "users" (17799 28977) (17580
35794) (17580 35794) 15355 33200 t (0 . 11429) (44407 43121))
("ur_unix_file_update.prc" nil 1 "jcoope24" "users" (17799 28977) (17580 35794)
(17580 35794) 12131 33200 t (0 . 11430) (44407 43121))
("ur_valid_user.fnc" nil 1 "jcoope24" "users" (17799 28977) (17580 35794)
(17580 35794) 147 33200 t (0 . 11431) (44407 43121))
("ur_valid_user_test.fnc" nil 1 "jcoope24" "users" (17799 28978) (17580 35794)
(17580 35794) 636 33200 t (0 . 11432) (44407 43121))
("ur_webct_download.prc" nil 1 "jharrop" "users" (17799 28978) (17635 60266)
(17635 60266) 9338 33248 t (0 . 21767) (44407 43121))
("ur_webct_staff_download.prc" nil 1 "jcoope24" "users" (17799 28978) (17613
36710) (17613 36710) 3497 33200 t (0 . 11434) (44407 43121))
("ur_webct_terms_download.prc" nil 1 "jcoope24" "users" (17799 28978) (17580
35794) (17580 35794) 2222 33200 t (0 . 11435) (44407 43121))
("web_page_log.prc" nil 1 "jcoope24" "users" (17844 20096) (17580 35794) (17580
35794) 343 33200 t (0 . 11436) (44407 43121))
("ur_patron_load.prc" nil 1 "jcoope24" "users" (17799 28978) (17635 61777)
(17635 61777) 33779 33200 t (0 . 24769) (44407 43121))
("ur_student_utilities.plsql" nil 1 "unereg" "users" (17845 15368) (17580
35793) (17580 35793) 4651 33200 t (0 . 17826) (44407 43121))
("callista_lib.plsql" nil 1 "jcoope24" "users" (17799 28978) (17596 27843)
(17596 27843) 19570 33200 t (0 . 10747) (44407 43121))
("ur_get_teaching_periods.prc" nil 1 "jcoope24" "users" (17799 28978) (17580
35791) (17580 35791) 1800 33200 t (0 . 11547) (44407 43121))
("ur_id_staff_download.prc" nil 1 "jcoope24" "users" (17799 28979) (17580
35791) (17580 35791) 4473 33200 t (0 . 11438) (44407 43121))
("ur_staff_extract.prc" nil 1 "jcoope24" "users" (17799 28979) (17580 35793)
(17580 35793) 2813 33200 t (0 . 11439) (44407 43121))
("ur_students_terms_page.prc" nil 1 "jcoope24" "users" (17799 28979) (17580
35793) (17580 35793) 8142 33200 t (0 . 11426) (44407 43121))
("ur_trans_batch_out.prc" nil 1 "jcoope24" "users" (17799 28979) (17729 27242)
(17729 27242) 5148 33200 t (0 . 11441) (44407 43121))
("get_next_sequence_val.fnc" nil 1 "jcoope24" "users" (17799 28979) (17580
35790) (17580 35790) 309 33200 t (0 . 11458) (44407 43121))
("ur_output_id_card_data.pkb" nil 1 "jcoope24" "users" (17873 19030) (17773
2236) (17773 2236) 31130 33200 t (0 . 23654) (44407 43121))
("to_only_lower.fnc" nil 1 "jcoope24" "users" (17799 28979) (17580 35790)
(17580 35790) 6584 33200 t (0 . 11376) (44407 43121))
("ur_access_denied.prc" nil 1 "jcoope24" "users" (17799 28979) (17580 35790)
(17580 35790) 438 33200 t (0 . 11377) (44407 43121))
("ur_macafee_staff_download.prc" nil 1 "jcoope24" "users" (17799 28979) (17580
35791) (17580 35791) 3171 33200 t (0 . 11392) (44407 43121))
("ur_output_id_card_data.pks" nil 1 "jcoope24" "users" (17874 15410) (17580
35792) (17580 35792) 1003 33200 t (0 . 23655) (44407 43121))
("ur_reg_edit_auth.prc" nil 1 "unereg" "users" (17799 28979) (17580 35792)
(17580 35792) 7073 33200 t (0 . 15545) (44407 43121))
("create_uname_job_145822.sql" nil 1 "jcoope24" "users" (17799 28979) (17580
35790) (17580 35790) 319 33200 t (0 . 22364) (44407 43121))
("ur_accounts_utilities.pks" nil 1 "jcoope24" "users" (17799 28979) (17580
35791) (17580 35791) 1690 33200 t (0 . 23578) (44407 43121))
("ur_reg_new_owner.prc" nil 1 "jharrop" "users" (17799 28980) (17660 52727)
(17660 52727) 14999 33252 t (0 . 30772) (44407 43121))
("ur_research_download.prc" nil 1 "jharrop" "users" (17799 28980) (17580 35793)
(17580 35793) 4965 33200 t (0 . 25365) (44407 43121))
("ur_reg_bulk_registration.prc" nil 1 "jharrop" "users" (17799 28980) (17580
35792) (17580 35792) 36347 33268 t (0 . 25483) (44407 43121))
("replace_exact_alias.fnc" nil 1 "jharrop" "users" (17799 28980) (17240 32830)
(17580 35788) 1228 33252 t (0 . 24977) (44407 43121))
("error_page.psp" nil 1 "jharrop" "users" (17799 28980) (17635 59268) (17635
59268) 1691 33184 t (0 . 30796) (44407 43121))
)
$ test -e /apps/une/unereg/source/plsql/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
# Sending the Perl script `tramp_file_attributes'...
$ tramp_file_attributes () {
/bin/perl -e '@stat = lstat($ARGV[0]);
if (($stat[2] & 0170000) == 0120000)
{
$type = readlink($ARGV[0]);
$type = "\"$type\"";
}
elsif (($stat[2] & 0170000) == 040000)
{
$type = "t";
}
else
{
$type = "nil"
};
$uid = ($ARGV[1] eq "integer") ? $stat[4] : "\"" . getpwuid($stat[4]) . "\"";
$gid = ($ARGV[1] eq "integer") ? $stat[5] : "\"" . getgrgid($stat[5]) . "\"";
printf(
"(%s %u %s %s (%u %u) (%u %u) (%u %u) %u %u t (%u . %u) -1)\n",
$type,
$stat[3],
$uid,
$gid,
$stat[8] >> 16 & 0xffff,
$stat[8] & 0xffff,
$stat[9] >> 16 & 0xffff,
$stat[9] & 0xffff,
$stat[10] >> 16 & 0xffff,
$stat[10] & 0xffff,
$stat[7],
$stat[2],
$stat[1] >> 16 & 0xffff,
$stat[1] & 0xffff
);' "$1" "$2" "$3" 2>/dev/null
}
tramp_exit_status 0
# Sending the Perl script `tramp_file_attributes'...done.
$ tramp_file_attributes /apps/une/unereg/source/plsql/ integer
(t 3 375 15 (17874 15820) (17845 38813) (17845 38813) 8192 16888 t (0 . 10647)
-1)
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ ( test -d /apps/une/unereg/source/plsql/ur_output_id_card_data.pks
2>/dev/null; echo tramp_exit_status $? )
tramp_exit_status 1
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ ( test -d /apps/une/unereg/source/plsql/ur_output_id_card_data.pks
2>/dev/null; echo tramp_exit_status $? )
tramp_exit_status 1
$ test -e /apps 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps integer
(t 15 0 0 (17874 15801) (17701 55206) (17701 55206) 8192 16893 t (0 . 1948) -1)
$ test -e /apps/une 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une integer
(t 55 200 15 (17874 15411) (17734 53218) (17734 53218) 8192 16893 t (0 . 2) -1)
$ test -e /apps/une/unereg 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg integer
(t 9 375 15 (17874 15411) (17230 58614) (17230 58614) 8192 16888 t (0 . 2802)
-1)
$ test -e /apps/une/unereg/source 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg/source integer
(t 6 375 15 (17874 15411) (16941 8947) (16941 8947) 8192 16888 t (0 . 3703) -1)
$ test -e /apps/une/unereg/source/plsql 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg/source/plsql integer
(t 3 375 15 (17874 15820) (17845 38813) (17845 38813) 8192 16888 t (0 . 10647)
-1)
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes
/apps/une/unereg/source/plsql/ur_output_id_card_data.pks integer
(nil 1 393 15 (17874 15410) (17580 35792) (17580 35792) 1003 33200 t (0 .
23655) -1)
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes
/apps/une/unereg/source/plsql/ur_output_id_card_data.pks integer
(nil 1 393 15 (17874 15410) (17580 35792) (17580 35792) 1003 33200 t (0 .
23655) -1)
$ test -e /apps 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps integer
(t 15 0 0 (17874 15801) (17701 55206) (17701 55206) 8192 16893 t (0 . 1948) -1)
$ test -e /apps/une 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une integer
(t 55 200 15 (17874 15411) (17734 53218) (17734 53218) 8192 16893 t (0 . 2) -1)
$ test -e /apps/une/unereg 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg integer
(t 9 375 15 (17874 15411) (17230 58614) (17230 58614) 8192 16888 t (0 . 2802)
-1)
$ test -e /apps/une/unereg/source 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg/source integer
(t 6 375 15 (17874 15411) (16941 8947) (16941 8947) 8192 16888 t (0 . 3703) -1)
$ test -e /apps/une/unereg/source/plsql 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg/source/plsql integer
(t 3 375 15 (17874 15820) (17845 38813) (17845 38813) 8192 16888 t (0 . 10647)
-1)
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes
/apps/une/unereg/source/plsql/ur_output_id_card_data.pks integer
(nil 1 393 15 (17874 15410) (17580 35792) (17580 35792) 1003 33200 t (0 .
23655) -1)
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes
/apps/une/unereg/source/plsql/ur_output_id_card_data.pks integer
(nil 1 393 15 (17874 15410) (17580 35792) (17580 35792) 1003 33200 t (0 .
23655) -1)
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ test -d /apps/une/unereg/source/plsql/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -r /apps/une/unereg/source/plsql/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -x /apps/une/unereg/source/plsql/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
# Waiting for prompts from remote shell
# Waiting 60s for prompt from remote shell
# Process has finished.
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes
/apps/une/unereg/source/plsql/ur_output_id_card_data.pks integer
(nil 1 393 15 (17874 15860) (17580 35792) (17580 35792) 1003 33200 t (0 .
23655) -1)
# Inserting local temp file `/home/tcross/tmp/tramp.236776Ab'...
# Inserting local temp file `/home/tcross/tmp/tramp.236776Ab'...done
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ test -w /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes
/apps/une/unereg/source/plsql/ur_output_id_card_data.pks integer
(nil 1 393 15 (17874 15860) (17580 35792) (17580 35792) 1003 33200 t (0 .
23655) -1)
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes
/apps/une/unereg/source/plsql/ur_output_id_card_data.pks integer
(nil 1 393 15 (17874 15860) (17580 35792) (17580 35792) 1003 33200 t (0 .
23655) -1)
$ test -e /apps/une/unereg/source/plsql/RCS/ur_output_id_card_data.pks\,v
2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks\,v
2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/source/plsql/RCS/ur_output_id_card_data.pks
2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -r /apps/une/unereg/source/plsql/CVS/Entries 2>/dev/null; echo
tramp_exit_status $?
tramp_exit_status 1
$ test -r /apps/une/unereg/source/plsql/.svn/entries 2>/dev/null; echo
tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/source/plsql/SCCS/s.ur_output_id_card_data.pks
2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/source/plsql/s.ur_output_id_card_data.pks
2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/source/plsql/\{arch\}/\=tagging-method 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/source/\{arch\}/\=tagging-method 2>/dev/null; echo
tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/\{arch\}/\=tagging-method 2>/dev/null; echo
tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/\{arch\}/\=tagging-method 2>/dev/null; echo
tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/\{arch\}/\=tagging-method 2>/dev/null; echo tramp_exit_status
$?
tramp_exit_status 1
$ test -e /\{arch\}/\=tagging-method 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/source/plsql/MCVS/CVS 2>/dev/null; echo
tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/source/MCVS/CVS 2>/dev/null; echo tramp_exit_status
$?
tramp_exit_status 1
$ test -e /apps/une/unereg/MCVS/CVS 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/MCVS/CVS 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/MCVS/CVS 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /MCVS/CVS 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 1
$ test -e /apps/une/unereg/source/plsql/ur_output_id_card_data.pks 2>/dev/null;
echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes
/apps/une/unereg/source/plsql/ur_output_id_card_data.pks integer
(nil 1 393 15 (17874 15860) (17580 35792) (17580 35792) 1003 33200 t (0 .
23655) -1)
$ cd /apps/une/unereg/source/plsql/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ /bin/ls -a | cat
.
..
archive
callista_lib.plsql
create_uname_job_145822.sql
error_page.psp
get_next_sequence_val.fnc
getfield.fnc
mailing_update.prc
replace_exact_alias.fnc
to_only_lower.fnc
ur_access_denied.prc
ur_accounts_utilities.pkb
ur_accounts_utilities.pks
ur_catalog.prc
ur_cc_access.prc
ur_change.pkb
ur_change.pks
ur_edit_costcode.prc
ur_email_aliases_file_update.prc
ur_encrypt.fnc
ur_file_utilities.pkb
ur_file_utilities.pks
ur_get_authority.fnc
ur_get_code.fnc
ur_get_period_description.fnc
ur_get_regos.prc
ur_get_teaching_periods.prc
ur_get_units.prc
ur_id_staff_download.prc
ur_load_archived.prc
ur_log_activity.pkb
ur_log_activity.pks
ur_macafee_staff_download.prc
ur_makesalt.fnc
ur_modems_file_update.prc
ur_output_enrolment_data.prc
ur_output_id_card_data.pkb
ur_output_id_card_data.pks
ur_patron_load.prc
ur_people_utilities.pkb
ur_people_utilities.pks
ur_person_account_file_load.prc
ur_reg_access.prc
ur_reg_account_remove.prc
ur_reg_bulk_registration.prc
ur_reg_change.prc
ur_reg_confirm.prc
ur_reg_create_special.prc
ur_reg_edit_auth.prc
ur_reg_edit_special.prc
ur_reg_lookup.prc
ur_reg_new_owner.prc
ur_reg_remove.prc
ur_reg_remove_expired.prc
ur_reg_restore.prc
ur_reg_student.prc
ur_reg_student_password.prc
ur_reg_student_sorry.prc
ur_reg_uname_change.prc
ur_research_download.prc
ur_retired_page.prc
ur_set_primary.prc
ur_spec_to_staff.prc
ur_specials_file_update.prc
ur_staff_codes_dblink_update.prc
ur_staff_dblink_update.prc
ur_staff_extract.prc
ur_staff_jobs_dblink_update.prc
ur_staff_students_update.prc
ur_student_utilities.pkb
ur_student_utilities.pks
ur_student_utilities.plsql
ur_students_dblink_update.prc
ur_students_gateway.prc
ur_students_liability.prc
ur_students_page_bottom.prc
ur_students_page_top.prc
ur_students_terms_page.prc
ur_trans_batch_out.prc
ur_transactions_file_load.prc
ur_unix_file_update.prc
ur_valid_user.fnc
ur_valid_user_test.fnc
ur_webct_download.prc
ur_webct_staff_download.prc
ur_webct_terms_download.prc
web_page_log.prc
$ cd
$ test -r /apps/une/unereg/source/plsql/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -r /apps/une/unereg/source/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /apps 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps integer
(t 15 0 0 (17874 15801) (17701 55206) (17701 55206) 8192 16893 t (0 . 1948) -1)
$ test -e /apps/une 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une integer
(t 55 200 15 (17874 15411) (17734 53218) (17734 53218) 8192 16893 t (0 . 2) -1)
$ test -e /apps/une/unereg 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg integer
(t 9 375 15 (17874 15411) (17230 58614) (17230 58614) 8192 16888 t (0 . 2802)
-1)
$ test -e /apps/une/unereg/source 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg/source integer
(t 6 375 15 (17874 15411) (16941 8947) (16941 8947) 8192 16888 t (0 . 3703) -1)
$ test -e /apps/une/unereg/source/plsql 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg/source/plsql integer
(t 3 375 15 (17874 15860) (17845 38813) (17845 38813) 8192 16888 t (0 . 10647)
-1)
$ cd /apps/une/unereg/source 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ /bin/ls -a | cat
.
..
create
plsql
psp
win
$ cd
$ test -r /apps/une/unereg/source 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -r /apps/une/unereg/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /apps 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps integer
(t 15 0 0 (17874 15801) (17701 55206) (17701 55206) 8192 16893 t (0 . 1948) -1)
$ test -e /apps/une 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une integer
(t 55 200 15 (17874 15411) (17734 53218) (17734 53218) 8192 16893 t (0 . 2) -1)
$ test -e /apps/une/unereg 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg integer
(t 9 375 15 (17874 15411) (17230 58614) (17230 58614) 8192 16888 t (0 . 2802)
-1)
$ test -e /apps/une/unereg/source 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg/source integer
(t 6 375 15 (17874 15860) (16941 8947) (16941 8947) 8192 16888 t (0 . 3703) -1)
$ cd /apps/une/unereg 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ /bin/ls -a | cat
.
..
bin
data
old_userreg
promote_jobs
scripts
source
temp
$ cd
$ test -r /apps/une/unereg 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -r /apps/une/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /apps 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps integer
(t 15 0 0 (17874 15801) (17701 55206) (17701 55206) 8192 16893 t (0 . 1948) -1)
$ test -e /apps/une 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une integer
(t 55 200 15 (17874 15411) (17734 53218) (17734 53218) 8192 16893 t (0 . 2) -1)
$ test -e /apps/une/unereg 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une/unereg integer
(t 9 375 15 (17874 15860) (17230 58614) (17230 58614) 8192 16888 t (0 . 2802)
-1)
$ cd /apps/une 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ /bin/ls -a | cat
.
..
.bash_history
.tags
Alumni
BannerExport.txt
academic
adhoc
afm14
afm15
bin
cas
cgi-bin
cognos
concept
dem
discoverer_cleanup
eportfolio
erez
erez.tar.gz
esubmit
f1
fee_assess
finance
herbarium
housekeep
itrac
keytracker
lib
migrate
out
owf
pinnacle
qtac
quota.group
quota.user
research
rmis
sandbox
scholarship
serials
services
sh_conf
sh_conf.tar.gz
sps
ssl-certs
ssl-certs-20060908.tgz
student
tac
tbs
template
test
timetable
timetable_old
uac
unereg
unesis
units
units2006
units2007
utlfiledir
virtua
web
$ cd
$ test -r /apps/une 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -r /apps/ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /apps 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps integer
(t 15 0 0 (17874 15801) (17701 55206) (17701 55206) 8192 16893 t (0 . 1948) -1)
$ test -e /apps/une 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps/une integer
(t 55 200 15 (17874 15861) (17734 53218) (17734 53218) 8192 16893 t (0 . 2) -1)
$ cd /apps 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ /bin/ls -a | cat
.
..
academic_database
apps-test
banner
callista
concept
contenta
distinction
init.d
oracle
t1
une
unereg
userreg
virtua
$ cd
$ test -r /apps 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -r / 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /apps 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /apps integer
(t 15 0 0 (17874 15861) (17701 55206) (17701 55206) 8192 16893 t (0 . 1948) -1)
$ cd / 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ /bin/ls -a | cat
(null)ajzhDa
(null)akyBxa
(null)akysoa
(null)akzvsa
.
..
.Xauthority
.advfs_hostlist
.cpan
.cshrc
.dt
.local..
.lsof_erskine
.mrg...login
.new...cshrc
.new...login
.new...profile
.osonly_tmp
.parts.swp
.profile
.proto...cshrc
.proto...login
.proto...profile
.ssh2
.sysman
.tags
ErskineTestPage.ps
FMG_LOCAL_PARAM_LIBRARY.KNL
GENERIC
RCS
UNE-PK4-JAN-2006
apps
atjob
backups
bin
bob
cluster
core
cssdev
dev
devices
dsk1
dsk8_new_label
etc
exit
genvmunix
home
htemp
lib
lost+found
mdec
mnt
nohup.out
nsr
opt
oradata
osf_boot
packet.trace
paging
patchterm
proc
quota.group
quota.user
root
rpmlist
sbin
shlib
sqlnet.log
subsys
sys
tcb
tmp
tmperr
updmnt
usr
var
vmunix
vmunix.PrePatch
vmunix.old
vmunix.pre-crash
$ cd
$ test -r / 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -r /../ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ cd /.. 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ /bin/ls -a | cat
(null)ajzhDa
(null)akyBxa
(null)akysoa
(null)akzvsa
.
..
.Xauthority
.advfs_hostlist
.cpan
.cshrc
.dt
.local..
.lsof_erskine
.mrg...login
.new...cshrc
.new...login
.new...profile
.osonly_tmp
.parts.swp
.profile
.proto...cshrc
.proto...login
.proto...profile
.ssh2
.sysman
.tags
ErskineTestPage.ps
FMG_LOCAL_PARAM_LIBRARY.KNL
GENERIC
RCS
UNE-PK4-JAN-2006
apps
atjob
backups
bin
bob
cluster
core
cssdev
dev
devices
dsk1
dsk8_new_label
etc
exit
genvmunix
home
htemp
lib
lost+found
mdec
mnt
nohup.out
nsr
opt
oradata
osf_boot
packet.trace
paging
patchterm
proc
quota.group
quota.user
root
rpmlist
sbin
shlib
sqlnet.log
subsys
sys
tcb
tmp
tmperr
updmnt
usr
var
vmunix
vmunix.PrePatch
vmunix.old
vmunix.pre-crash
$ cd
$ test -r /.. 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -r / 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /.. 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /.. integer
(t 33 0 0 (17874 15861) (17526 20347) (17526 20347) 8192 16877 t (0 . 2) -1)
$ cd / 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ /bin/ls -a | cat
(null)ajzhDa
(null)akyBxa
(null)akysoa
(null)akzvsa
.
..
.Xauthority
.advfs_hostlist
.cpan
.cshrc
.dt
.local..
.lsof_erskine
.mrg...login
.new...cshrc
.new...login
.new...profile
.osonly_tmp
.parts.swp
.profile
.proto...cshrc
.proto...login
.proto...profile
.ssh2
.sysman
.tags
ErskineTestPage.ps
FMG_LOCAL_PARAM_LIBRARY.KNL
GENERIC
RCS
UNE-PK4-JAN-2006
apps
atjob
backups
bin
bob
cluster
core
cssdev
dev
devices
dsk1
dsk8_new_label
etc
exit
genvmunix
home
htemp
lib
lost+found
mdec
mnt
nohup.out
nsr
opt
oradata
osf_boot
packet.trace
paging
patchterm
proc
quota.group
quota.user
root
rpmlist
sbin
shlib
sqlnet.log
subsys
sys
tcb
tmp
tmperr
updmnt
usr
var
vmunix
vmunix.PrePatch
vmunix.old
vmunix.pre-crash
$ cd
$ test -r / 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -r /../ 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ cd /.. 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ /bin/ls -a | cat
(null)ajzhDa
(null)akyBxa
(null)akysoa
(null)akzvsa
.
..
.Xauthority
.advfs_hostlist
.cpan
.cshrc
.dt
.local..
.lsof_erskine
.mrg...login
.new...cshrc
.new...login
.new...profile
.osonly_tmp
.parts.swp
.profile
.proto...cshrc
.proto...login
.proto...profile
.ssh2
.sysman
.tags
ErskineTestPage.ps
FMG_LOCAL_PARAM_LIBRARY.KNL
GENERIC
RCS
UNE-PK4-JAN-2006
apps
atjob
backups
bin
bob
cluster
core
cssdev
dev
devices
dsk1
dsk8_new_label
etc
exit
genvmunix
home
htemp
lib
lost+found
mdec
mnt
nohup.out
nsr
opt
oradata
osf_boot
packet.trace
paging
patchterm
proc
quota.group
quota.user
root
rpmlist
sbin
shlib
sqlnet.log
subsys
sys
tcb
tmp
tmperr
updmnt
usr
var
vmunix
vmunix.PrePatch
vmunix.old
vmunix.pre-crash
$ cd
$ test -r /.. 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -r / 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ test -e /.. 2>/dev/null; echo tramp_exit_status $?
tramp_exit_status 0
$ tramp_file_attributes /.. integer
(t 33 0 0 (17874 15861) (17526 20347) (17526 20347) 8192 16877 t (0 . 2) -1)
$ cd / 2>/dev/null; echo tramp_exit_status $?
--
Tim Cross
Information Technology Directorate
University of New England
Phone: +61 2 6773 3210
Mobile: 0428 212217
Fax: +61 2 6773 3424
E-Mail: [EMAIL PROTECTED]
Web: http://www.une.edu.au/itd
---
Please avoid sending me Word or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
"Only two things are infinite, the universe and human stupidity, and
I'm not sure about the former" - Albert Einstein