summaryrefslogtreecommitdiff
path: root/chat/chat.sh
blob: f203228bb1d3314b5c4d2f6ec113f857798e866c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/pkg/bin/perl
chdir("/home/segfault/chat");
my $sentence="";
my $i=0;
@words=split(/ /,join(" ",@ARGV));
foreach(@words) {
 if(!chdir($_)) {
  $args=join(" ",@words[$i .. $#words]);
  $args =~ s/'/'\\''/g;
  system("./_ '" . $args . "'\n");
  exit;
 }
 $i++;
}
system("./_");