Differences between revisions 2 and 3
Revision 2 as of 2005-10-18 15:47:58
Size: 130
Editor: linuxerw
Comment:
Revision 3 as of 2006-08-17 09:35:02
Size: 449
Editor: lalinekw2
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:

== scp problems in csh ==
scp is executing .cshrc. In case .cshrc contains any screen output (also when psetup is called which generate screen output) the scp fails without any message.
To avoid this you may use in the .cshrc file :

{{{
if ($?term) then
  psetup
  echo "Hallo mein lieber Ekki"
endif
}}}

Extract the files of an RPM archive to the working directory

rpm2cpio WHATEVER.rpm | cpio -i --make-directories

scp problems in csh

scp is executing .cshrc. In case .cshrc contains any screen output (also when psetup is called which generate screen output) the scp fails without any message. To avoid this you may use in the .cshrc file :

if ($?term) then 
  psetup
  echo "Hallo mein lieber Ekki"
endif

Herschel: PACS/Hints (last edited 2009-07-15 14:32:36 by localhost)