はい、それは構文エラー.profile
です。変更しない限り、実際は次のようになります(これは17.10バージョンです。その下の注を参照してください)。
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
これは、ユーザーbin
ディレクトリが存在するかどうかのチェックがに含まれていなかった古いバージョンのUbuntuでは異なる場合があります.profile
。それがどのように見えるべきかを確認する最も簡単な方法は、を見てみること/etc/skel/.profile
です。
したがって、コメントで要求したとおりに追加するには、これをプロファイルファイルの最後に配置するだけです。
# Manual addition for swift development snapshot
export PATH="$PATH:/home/jeremy/swift-4.0-DEVELOPMENT-SNAPSHOT-2017-06-29-a-ubuntu16.04/usr/bin"
プロファイルを完全にめちゃくちゃにした場合は、から新しいプロファイルを取得できるコピーがあります/etc/skel/
。