Changeset 24

Show
Ignore:
Timestamp:
04/07/05 08:24:27 (4 years ago)
Author:
conrad
Message:

switch irc to a function, and source functions

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • home/.profile

    r16 r24  
    11# .profile 
     2 
     3source ~/bin/functions 
    24 
    35# Edit a blog entry file of name YYYYMMDD.txt 
  • home/bin/irc

    r11 r24  
    11#!/bin/sh 
    22 
    3 if ! screen -x irc > /dev/null 2> /dev/null 
    4 then 
    5   # no irc screen session exists; create one 
    6   screen -S "irc" irssi 
    7 fi 
     3irc () { 
     4  if ! screen -x irc > /dev/null 2> /dev/null 
     5  then 
     6    # no irc screen session exists; create one 
     7    screen -S "irc" irssi 
     8  fi 
     9