Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Mar 2016 22:15:59 +0100
From:      Johan Hendriks <joh.hendriks@gmail.com>
To:        freebsd-stable@freebsd.org
Cc:        Brandon Allbery <allbery.b@gmail.com>
Subject:   Re: output to file different than console. (ssh and zfs )
Message-ID:  <56E1E40F.9070608@gmail.com>
In-Reply-To: <CAKFCL4VZNRBhz2C-g8fESESuOkMJZiA6YiY5oOcfZnSOZGbV2Q@mail.gmail.com>
References:  <56E1B925.5060105@gmail.com> <CAKFCL4UON30j1-wNLUnbzmQRKxmhPUL8zOS7uaGo=Ph1Kq19pg@mail.gmail.com> <56E1BFD6.60906@gmail.com> <CAKFCL4VZNRBhz2C-g8fESESuOkMJZiA6YiY5oOcfZnSOZGbV2Q@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help


Op 10/03/16 om 19:43 schreef Brandon Allbery:
>
> On Thu, Mar 10, 2016 at 1:41 PM, Johan Hendriks
> <joh.hendriks@gmail.com <mailto:joh.hendriks@gmail.com>> wrote:
>
>     mytitle
>
>
> if ($?prompt) mytitle
>
>
> -- 
> brandon s allbery kf8nh                               sine nomine
> associates
> allbery.b@gmail.com <mailto:allbery.b@gmail.com>                      
>            ballbery@sinenomine.net <mailto:ballbery@sinenomine.net>
> unix, openafs, kerberos, infrastructure, xmonad      
>  http://sinenomine.net
Found it!

There is already a if ($?prompt) in the .cshrc file.

So I added mytitle to the if statement and all is fine now.
And again, thank you very much ..

So here is my  full .cshrc file if anybody else needs this. Only the two
lines with mytitle are added to the default .cshrc file that comes with
FreeBSD.

# $FreeBSD: releng/10.2/etc/root/dot.cshrc 243893 2012-12-05 13:56:39Z
eadler $
#
# .cshrc - csh resource script, read at beginning of execution by each shell
#
# see also csh(1), environ(7).
# more examples available at /usr/share/examples/csh/
#

# Create a nice TAB title in Xterm
alias mytitle 'printf "\033]0;$HOST\a"'

alias h         history 25
alias j         jobs -l
alias la        ls -aF
alias lf        ls -FA
alias ll        ls -lAF

# A righteous umask
umask 22

set path = (/sbin /bin /usr/sbin /usr/bin /usr/games /usr/local/sbin
/usr/local/bin $HOME/bin)

setenv  EDITOR  vi
setenv  PAGER   more
setenv  BLOCKSIZE       K

if ($?prompt) then
        # An interactive shell -- set some stuff up
        set prompt = "%N@%m:%~ %# "
        set promptchars = "%#"

# Print the title to the TAB
        mytitle

        set filec
        set history = 1000
        set savehist = (1000 merge)
        set autolist = ambiguous
        # Use history to aid expansion
        set autoexpand
        set autorehash
        set mail = (/var/mail/$USER)
        if ( $?tcsh ) then
                bindkey "^W" backward-delete-word
                bindkey -k up history-search-backward
                bindkey -k down history-search-forward
        endif

endif




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?56E1E40F.9070608>