1

I could chdir in .screenrc in linux
so that when I open up screen, I could go to specified directory(for each tab)

Haven't had success with chdir in mac with screenrc.
Anyone have done this?

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
eugene
  • 39,839
  • 68
  • 255
  • 489

1 Answers1

1

Works for me. What does your chdir command look like, and what happens when you run screen?

Ernest Friedman-Hill
  • 80,601
  • 10
  • 150
  • 186
  • 2
    shell -$SHELL which was copied from linux was the cause.. now it chdir correctly. but the terminal reads bash-3.2$ instead of {dir_name}$ . – eugene Apr 11 '11 at 04:03
  • removing shell -${SHELL} worked for me on cygwin as well. Thanks! – andersonbd1 Dec 30 '11 at 15:01