0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

前回の記事の補足 Pythonのアウトプット

Posted at

こんにちは
未来電子テクノロジー
でインターンをしているodattiです。

Pythonの勉強をしています。

前回の記事では
md や cdの意味について触れたのですが、今回はそれに補足する形でアウトプットします。

cd..

ひとつ前のディレクトリに戻ります。
ちなみに、cd../..でディレクトリを二つ前に戻るそうです。

ディレクトリでサーバーを立ち上げるときの注意

なぜ僕が


cd..

について最初に言及したのか。
それは、ディレクトリでサーバーを立ち上げるときは
「立ち上げたいディレクトリの一つ前に戻らなければならない」
からです。

例えば、cgi-binでサーバーを立ち上げたいときにcgi-binのディレクトリでサーバーを立ち上げようとすると、

cgi-bin/cgi-bin/…

となってしまうからです。
サーバーを立てた場所からのパスだということがとても大切なのでした。
(ちなみにこのことさえ理解できていなかったために、サーバーを立ち上げるのにかなりの時間を費やしました)

P.S 今回の記事とはあまり関係ないのですが、Pythonって英語でニシキヘビっていう意味なんですね。Python関連の本の表紙に蛇が多い理由がわかりました笑
 

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?