LoginSignup
1
1

More than 5 years have passed since last update.

. ./hoge.sh ./hoge.shの振る舞いの違い

Last updated at Posted at 2016-09-06

基礎的な話ですがちょっとハマったので。

hello.sh
#!/usr/bin/env python

print 'hello world'

. hello.shで実行

root@e2ca913d6b6: . hello.sh
root@e2ca913d6b6:/# . hello.sh
Warning: unknown mime-type for "hello world" -- using "application/octet-stream"
Error: no such file "hello world"

シェバン(#!/usr/bin/env python)無視でシェルスクリプトとして実行される

./hello.shで実行

root@e2ca913d6b6: . hello.sh
root@e2ca913d6b6:/# . hello.sh
hello world

シェバンから空気を読んで、pythonとして実行される

1
1
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
1
1