리눅스에서 source명령어의 의미와 bashrc의 용도

luke419의 이미지

1. shell programing에서 source명령어는 무엇을 의미하는지요?
아래와 같은 예제가 있네요.

– in kornshell : . ${HOME}/.prgmrc
– in C–shell : source ${HOME}/.prgmrc

bash shell은 C-shell로 봐야하나요?

2. 보통 .bash_profile에 path, 기타 환경변수 설정, shell 명령어 등이 들어가는 걸로 알고 있습니다.
그리고 보통 .bash_profile에 bashrc도 실행되게 되어 있고 path를 bashrc에 넣어도 된다고 하네요.

그런데 왜 굳이 이렇게 두개의 화일을 쓰는 건지요?
두 화일에 쓰이는 용도가 다른 것이 있는지요?
bashrc는 어느 경우에 쓰이는 화일인지요?

그럼..

bushi의 이미지

include 의 의미로 이해하세요.

bash 는 sh 계열입니다.

원칙적으로
profile 은 login shell 로 쓰일 때,
rc 는 그 밖에 실행될 때마다,
입니다.

[bushi@rose vmware]$ strace  bash -l 2>&1 | grep bash_profile
open("/home/bushi/.bash_profile", O_RDONLY|O_LARGEFILE) = 3
read(3, "# .bash_profile\n\n# Get the aliase"..., 459) = 459
^C
[bushi@rose vmware]$ strace  bash 2>&1 | grep bash_profile
^C
[bushi@rose vmware]$

OTL

eou4의 이미지

그렇다면 그냥 bash를 실행할 때 마다

bashrc를 찾아야할꺼같아서

아래와 같이 테스트 해봤습니다.

$strace bash 2>&1 | grep bashrc
^C
$

왜 여기선 bashrc가 안나오죠?

실제론 분명 bashrc를 실행하더군요..

ㅎㅁㅎ

bushi의 이미지

자세히는 모르겠습니다.
-l 옵션이 login shell 을 의미하는 것 처럼,
-i 옵션이 interactive shell 을 의미합니다.

명시적으로 -i 옵션을 주면 .bashrc 가 읽히는 것이 잡힙니다만,

[bushi@rose]~% strace -f bash -i -c "exit" 2>&1 | grep "/\.bash"
open("/home/bushi/.bashrc", O_RDONLY|O_LARGEFILE) = 3
[bushi@rose]~% 

아무 옵션 없이 그냥 다시 쉘을 실행시키는 경우엔 안 잡히는군요.
(strace 는 exec/fork 된 후부터 추적이 되기 때문에 부모가 뭘 하는 지는 모릅니다.
strace 의 -p 옵션을 사용해서 부모 쉘을 트레이스 해보세요.)

OTL

eou4의 이미지

이걸 해보게된 경위는.. xserver에서 gnome-terminal만 띄워서 쓰다가..

PATH 지정이 bash_profile에서 안되서 해보게되었습니다.

말씀하신대로 -p옵션을 써봤습니다.

$strace -p (gnome-terminal PID) 2>&1 | grep bash
access("/bin/bash", X_OK)               = 0
read(16, "access(\"/bin/bash\", X_OK)       "..., 4096) = 45
read(16, "read(16, \"access(\\\"/bin/bash\\\", "..., 4096) = 62
^C
$

gnome-terminal에서 새탭을 여니 위처럼 3줄이 나오더군요.

왜 여전히 bashrc가 안나올까요; 분명히 bashrc를 바꾸고 새탭을 열면 적용이 되던데..

ㅎㅁㅎ

bushi의 이미지

child 까지 트레이스하려면 -f 옵션이 필요합니다.
저도 gnome-terminal 에서 새 탭을 열어봤습니다.

[bushi@rose snftl]$ strace -f -p `pidof gnome-terminal` 2>&1 | grep "/\.bash"
[pid 24078] open("/home/bushi/.bashrc", O_RDONLY|O_LARGEFILE) = 3
[pid 24078] open("/home/bushi/.bash_history", O_RDONLY|O_LARGEFILE) = 3
[pid 24078] stat64("/home/bushi/.bash_history",  <unfinished ...>
[pid 24078] open("/home/bushi/.bash_history", O_RDONLY|O_LARGEFILE <unfinished ...>

OTL
eou4의 이미지

아.. 그렇군요.

strace.. 2>&1..

많이 배웠습니다. 감사합니다.

ㅎㅁㅎ

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.