diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-05-03 00:05:29 +0200 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2016-05-03 00:05:29 +0200 |
commit | d29cb5065ffef0450ffe052597cd135880813ac9 (patch) | |
tree | 9fb963ef2c54f72065a2e4362c6e42c5c4a9af65 /sboremove | |
parent | c400ed58e4ce1a16bb5f092f38753db80874a0de (diff) | |
download | sbotools-d29cb5065ffef0450ffe052597cd135880813ac9.tar.xz |
sboremove: pass arguments to system() safely
Diffstat (limited to 'sboremove')
-rwxr-xr-x | sboremove | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -196,7 +196,7 @@ unless ($non_int) { } } -system("/sbin/removepkg $_") for @confirmed; +system("/sbin/removepkg", $_) for @confirmed; say "All operations have completed successfully."; |