X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=csh%2Frc;h=0fdc66a26d4288a1bb2ec8030e61db1ddf306b4f;hb=17e1c02c53c9083cf2201c6e4c8ac5d493738f42;hp=597f47a07b0f4a83c4edd213e32219523b2de815;hpb=614f9080ac810a2f4c0a5244bca856f3358e625e;p=config%2Fdotfiles.git diff --git a/csh/rc b/csh/rc index 597f47a..0fdc66a 100644 --- a/csh/rc +++ b/csh/rc @@ -1,6 +1,6 @@ # Csh configuration file. -# Copyright (C) 2011-2012 Simon Ruderich +# Copyright (C) 2011-2013 Simon Ruderich # # This file is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,10 +16,11 @@ # along with this file. If not, see . -# Start Zsh in interactive login mode, otherwise do nothing. -l is used so Zsh -# sources .zlogin and .zlogout. +# Start Zsh in interactive login mode if available, otherwise do nothing. -l +# is used so Zsh sources .zlogin and .zlogout. if ($?prompt) then - exec zsh -l + # csh doesn't use `type` .. yeah POSIX. + which zsh >/dev/null && exec zsh -l endif # vim: ft=csh