linux shell script 경로에 대해서 질문이 있습니다.

somedayhow의 이미지


시뮬레이션을 반복하다보니 늘어나는 데이터를 감당할 수가 없어서
폴더별로 정리를 해보고 있습니다.
하지만 폴더를 바꿀때마다 실행파일인 start.sh를 수정해야 하는 번거로움이 있어서
좀 편한 방법이 없을까 질문을 해봅니다.

start.sh:

#!/bin/sh
 
cd /home/mtrnn/rnn_class_EE837/src/rnn-learn/result/lissa_1_rec/
 
if [ "$1" = clean ]; then
    rm -f *.log *.dat target.txt *.scale *.restore
    exit
fi
 
config_file=test_config.txt
connection_file=connection.txt
if [ -f $connection_file ]; then
        cp $config_file ."$config_file".tmp
        gen_config.sh $connection_file >> ."$config_file".tmp
else
        cp $config_file ."$config_file".tmp
fi
 
../../rnn-learn -i rnn.dat -c ."$config_file".tmp ./target*.txt
 
#${path2}rnn-generate -n 2000 rnn.dat > orbit.log
 
rm ."$config_file".tmp

여기서 첫번째 줄에
cd /home/mtrnn/rnn_class_EE837/src/rnn-learn/result/lissa_1_rec/

이 부분이 start.sh가 있는곳으로 이동하라는 걸로 알고 있습니다.
폴더를 이동시킬때마다 이 코드의 경로를
수정해줘야 하는데 pwd로 경로를 불러서
그 경로를 자동으로 집어넣게 하는 방법은 없을까요?

사실 cd /home/mtrnn/rnn_class_EE837/src/rnn-learn/result/lissa_1_rec/
이 코드가 왜 필요한지도 잘 모르겠습니다.
실행시킬 폴더에 start.sh가 있는데 왜 굳이 이 부분이 있어야 할까요?

closed_error.log        error.log  init_test     memo.txt  rep_init.log  start.sh        start.sh.o1061   target_rec_lissa1.txt  tau.log          threshold.log
closed_state000000.log  init.log   lyapunov.log  rec_long  rnn.dat       start.sh.e1061  state000000.log  tar_rec_lissa1.txt     test_config.txt  weight.log

raymundo의 이미지

왜 있어야 할까요...가 궁금하신 상황이면 그냥 저 라인 지워보시고 해 보시면 될 것 같은데요 :-)

스크립트 파일이 어디 있냐는 여기서 크게 중요하지 않고요, (lissa_1_rec 디렉토리에 있든 ~/bin 디렉토리에 있든)
스크립트를 실행하는 시점에 실행하는 쉘의 작업디렉토리가 어디냐에 따라 다르죠.

즉 A 디렉토리에 있는 상태에서 저 스크립트를 실행한다면 cd A 는 불필요하고,
다른 디렉토리에서 실행한다거나, cron 을 써서 실행한다거나 하는 상황이면 필요하죠.

pwd 로 경로 부르는 거야

cd `pwd`

하시면 되겠습니다만, 위의 이유로 이건 무의미한 코드겠고요.

OLDPWD=`pwd`   # 현재 작업 디렉토리 위치를 저장해두고
cd somewhere   # 다른 디렉토리로 이동해서 일하다가
cd $OLDPWD     # 원래 있던 곳으로 복귀

이런 식으로는 쓸 일이 있겠고요.

좋은 하루 되세요!

somedayhow의 이미지

에러가 나는것을 보고 저게 꼭 필요하다고 섣불리 짐작해버렸네요

그냥 해보면 간단했을것을 ㅋㅋ

지금까지 괜한 시간낭비하고 있었군요 ㅠㅠ

고맙습니다 ㅎㅎ

----------------------------------------------------------------------------------------------------------------------
많이 배워갑니다
고맙습니다.
언젠가 질문이 아니라 답변을 달아줄 수 있는 날이 오기를

somedayhow의 이미지

제가 서버를 이용하기 때문에

qsub -q ~~ start.sh
로 실행합니다.

qsub -q ~~ ./start.sh
를 시도해봤으나 이건 안되더라구요..

----------------------------------------------------------------------------------------------------------------------
많이 배워갑니다
고맙습니다.
언젠가 질문이 아니라 답변을 달아줄 수 있는 날이 오기를

dandyrilla의 이미지

아, job scheduler를 이용하여 start.sh를 실행시키시는 거였군요.

그렇다면 qsub -h 또는 qsub -help를 쳐서 초기 실행경로 설정하는 부분을 찾아보세요.
그냥 qsub 명령어만 주게 되면 /home/user 와 같은 사용자의 홈 디렉토리에서 실행된답니다.

job scheduler가 maui인 경우에는 -d 옵션 실행될 초기 디렉토리를 정해줄 수 있고요,
sge인 경우에는 -cwd 라는 옵션을 주어 현재 디렉토리에서 실행시키면 start.sh 를 문제업싱 바로 사용하실 수 있습니다.

somedayhow님 같은 경우 만약 maui를 이용하신다면,

qsub -q <queue> -d /home/mtrnn/rnn_class_EE837/src/rnn-learn/result/lissa_1_rec start.sh

라고 명령어를 입력하시게 되면 start.sh 파일을 -d 옵션으로 지정한 디렉토리에서 찾기 때문에
더 이상 에러를 발생시키는 일은 없을 것입니다. (그리고 start.sh에서 cd 부분은 없애셔도 되고요.)

somedayhow의 이미지

이제서야 답을 얻었네요 고맙습니다 ㅋㅋㅋ

----------------------------------------------------------------------------------------------------------------------
많이 배워갑니다
고맙습니다.
언젠가 질문이 아니라 답변을 달아줄 수 있는 날이 오기를

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.