summaryrefslogtreecommitdiff
path: root/chat/chat.sh
diff options
context:
space:
mode:
Diffstat (limited to 'chat/chat.sh')
-rwxr-xr-xchat/chat.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/chat/chat.sh b/chat/chat.sh
deleted file mode 100755
index f203228..0000000
--- a/chat/chat.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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("./_");