Skip to content

Commit

Permalink
Import yes.pl from https://github.com/mubaris/yes
Browse files Browse the repository at this point in the history
Change-Id: I0367a8357916b73f5260c72ecefa0ffb738eda94
  • Loading branch information
luk1337 authored and mikeNG committed Dec 30, 2024
1 parent 988d08b commit c9a8dd0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions darwin-x86/bin/yes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env perl

my $msg =
@ARGV
? (join " ", splice @ARGV) . "\n"
: "y\n";

print $msg while 1;
8 changes: 8 additions & 0 deletions linux-x86/bin/yes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env perl

my $msg =
@ARGV
? (join " ", splice @ARGV) . "\n"
: "y\n";

print $msg while 1;

0 comments on commit c9a8dd0

Please sign in to comment.