vote up 0 vote down star

I have the following in my .screenrc

 source ~/bin/Screen/multiUserSettings

It gives me

No such file or directory

although I have it.

The following code says me that unknown command ".".

. ~/bin/Screen/multiUserSettings

It is strange, since I can source by . in .vimrc and .zshrc, for instance.

The file multiUserSettings

 # allow the following people full control
 addacl root,aledesma,mymanager,mycoworker1,mycoworker2
 aclchg aledesma +rwx ?#??

 # allow everyone readonly access
 aclchg *,!aledesma -rwx ?#??

 # setup 10,000 lines of available scrollback ? copy/paste
 defscrollback 10000

 # fix scrollback in putty
 termcapinfo xterm* ti@:te@

How can you source in .screenrc?

flag

1 Answer

vote up 1 vote down check

Try to use

source /home/yourname/bin/Screen/multiUserSettings

instead. My guess is that screen does not support expanding ~ in that context.

If that does not work I think you should investigate to find out exactly which file name it complains "No such file or directory" about. You can use strace to log system calls for this.

link|flag
Thank you for your answer! It solves the problem! – Masi May 8 at 10:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.