Delete the leading TAB in line 70, so that the first character of the
line is the E of EOF
60 # Run all of the profile.d scripts
61 # Note that these are supplied by separate packages
62 # Ascending alphanumerical order enforced
63 if [ -d "/etc/profile.d" ]; then
64 while read f; do
65 if [ -f "${f}" ]; then
66 . "${f}"
67 fi
68 done <<- EOF
69 `/bin/find /etc/profile.d -iname '*.sh' -type f | sort`
70 EOF
^
Greets
Ronny
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/