-
Notifications
You must be signed in to change notification settings - Fork 53
/
TODO
32 lines (21 loc) · 994 Bytes
/
TODO
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
=== find
shells out to find2perl, which might be removed from perl.
=== Things that use system() and need special attention
addbib: or die "system '$1 $database' failed: $?";
addbib: system("$1 $database") == 0
apply: system $new_command; # Reinterpreted by the shell!
apply: system $command, splice @ARGV, 0, $argc;
apply: system $command;
awk:system 'a2p', @nargs;
find:system 'find2perl', @ARGV;
install: if (system "strip", $path) {
install: if (system "cmp", "-s", $file, $targ) {
man: if (system $command) {
mail: /\!/ && do { system($arg); last SWITCH; };
mail: system("$ENV{VISUAL} /tmp/ppt_mail$$");
mail: system("/bin/sh"); # For now. :-)
mail: system("$ENV{VISUAL} /tmp/ppt_mail$$");
mail: system("$1");
unshar: system '.r' if $ans =~ /^y/i;
time:$rc = system(@ARGV);
xargs: system(@run) == 0 or exit($? >> 8);