1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
#!/usr/bin/env perl
use v5.34;
use warnings;
use feature 'signatures';
no warnings ('experimental::signatures', 'experimental::smartmatch');
use Getopt::Std ();
sub usage($fh) {
print $fh <<~'EOF'
Usage:
x COMMANDS... [ '&&' / '||' / '|' ] COMMANDS...
x COMMANDS... [ 'AND' / 'OR' / 'PIPE' ] COMMANDS...
x -h
EOF
}
sub help($fh) {
print $fh <<~'EOF'
Options:
-h, --help show this message
COMMAND the command to be executed
'&&' / AND "AND" logical operator
'||' / OR "OR" logical operator
'|' / PIPE pipe operator
Run command chained together with operators.
NOTE: Remember to quote '&&', 'OR' and '|' operators, otherwise
they'll get captured by the shell and not be passed to the 'x'
program!
Examples:
Measure the time of two commands:
$ time x sleep 1 '&&' sleep 2
# equivalent to:
$ time sh -c 'sleep 1 && sleep 2'
Notify when either of the commands finish:
$ boop x cmd-1 '||' cmd-2
EOF
}
for (@ARGV) {
last if $_ eq '--';
if ($_ eq '--help') {
usage *STDOUT;
help *STDOUT;
exit;
}
}
my %opts;
if (!Getopt::Std::getopts('h', \%opts)) {
usage *STDERR;
exit 2;
}
if ($opts{h}) {
usage *STDOUT;
help *STDOUT;
exit;
}
sub status_for($n) {
if ($n == -1) {
return 127;
} elsif ($n & 127) {
return $n & 127;
} else {
return $n >> 8;
}
}
my @AND = ('&&', 'AND');
my @OR = ('||', 'OR');
my @PIPE = ('|', 'PIPE');
my @OPS = (@AND, @OR, @PIPE);
my @CMD;
for (@ARGV) {
if ($_ ~~ @OPS) {
system @CMD;
@CMD = ();
if ($_ ~~ @AND && $?) {
exit status_for($?);
} elsif ($_ ~~ @OR && !$?) {
exit 0;
} elsif ($_ ~~ @PIPE) {
...
}
} else {
push @CMD, $_;
}
}
exit status_for(system @CMD);
__END__
=head1 NAME
z - automatically uncompress arguments to other commands
=head1 SYNOPSYS
z COMMAND FILE... ARGUMENTS...
=cut
# FIXME: implement manpage in pod
# .TH x 1 1970-01-01 "x latest" "x user manual"
#
#
# .SH NAME
#
# x - chain shell commands without creating a subshell.
#
#
# .SH SYNOPSYS
#
# \fBx\fR [\fIOPTIONS\fR] COMMAND... [ \fI'&&'\fR / \fI'||'\fR / \fI'|'\fR ] COMMAND...
#
#
# .SH DESCRIPTION
#
# \fBx\fR is a \m[blue]\fBtool\fP\m[], from
# .pdfhref W -D https://euandre.org/ -- The best website ever
# .
#
#
# .SH OPTIONS
#
# .TP
# \fB-h\fR, \fB--help\fR
# Show help text.
#
#
# .SH OPERATORS
#
#
# =pod
# =head1 Heading Text
# =head2 Heading Text
# =head3 Heading Text
# =head4 Heading Text
# =over indentlevel
# =item stuff
# =back
# =begin format
# =end format
# =for format text...
# =encoding type
# =cut
|