diff options
author | John Ankarstr\xf6m <john@ankarstrom.se> | 2021-06-01 12:21:49 +0200 |
---|---|---|
committer | John Ankarstr\xf6m <john@ankarstrom.se> | 2021-06-01 12:21:49 +0200 |
commit | 6f014212fb084876ec0e0f63b07a304437038fed (patch) | |
tree | 774838721ea8c82fac33bf77fbfad018eb378aaf | |
parent | 42ff0c9a286596fc67b4e908b696b7d480c04b3f (diff) | |
download | xutil-6f014212fb084876ec0e0f63b07a304437038fed.tar.gz |
Add 'flip' utility
-rwxr-xr-x | flip | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -0,0 +1,6 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +exec (shift @ARGV, pop @ARGV, @ARGV); |