Экспорт: команда, не найденная

Я только что обновил свою человечность. После загружающейся ubuntu 14.04 LTS I получают это сообщение:

/etc/profile :line 33 Export command not found.

Это касается компилятора ФОРТРАНА. Кто-либо может помочь мне? Я присоединяю файл профиля.

# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).

if [ "$PS1" ]; then
  if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
    # The file bash.bashrc already sets the default PS1.
    # PS1='\h:\w\$ '
    if [ -f /etc/bash.bashrc ]; then
      . /etc/bash.bashrc
    fi
  else
    if [ "`id -u`" -eq 0 ]; then
      PS1='# '
    else
      PS1='$ '
    fi
  fi
fi

# The default umask is now handled by pam_umask.
# See pam_umask(8) and /etc/login.defs.

if [ -d /etc/profile.d ]; then
  for i in /etc/profile.d/*.sh; do
    if [ -r $i ]; then
      . $i
    fi
  done
  unset i
fi

PATH=$PATH:/opt/intel/composerxe/bin
Export PATH

LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/composerxe/include:/opt/intel/composer_xe_2013_sp1.3.174/tbb/include:/opt/intel/composer_xe_2013_sp1.3.174/compiler/lib/intel64
export LD_LIBRARY_PATH

MANPATH=$MANPATH:/opt/intel/composerxe/man/en_US/man1
export MANPATH
0
задан 23 February 2015 в 13:17

1 ответ

Необходимо изменить строку 33 от

Export PATH

к

export PATH
3
ответ дан 3 August 2019 в 14:50

Другие вопросы по тегам:

Похожие вопросы: