summaryrefslogtreecommitdiff
path: root/chat/chat.sh
diff options
context:
space:
mode:
authorepoch <epoch@hack.thebackupbox.net>2019-11-14 07:49:39 +0000
committerepoch <epoch@hack.thebackupbox.net>2019-11-14 07:49:39 +0000
commit093037c14055355d2fee55c25f4fc5899c4232d6 (patch)
treed29359c58b66e9024b8457ea5f8ae6dc203f1111 /chat/chat.sh
parentbd5cb1fdbacd61d38c885028598738c1287ca7c8 (diff)
downloadsegfault_home-093037c14055355d2fee55c25f4fc5899c4232d6.tar.gz
segfault_home-093037c14055355d2fee55c25f4fc5899c4232d6.zip
deleted a bunch of files not needed
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("./_");