| Page | Description | Tags |
|---|---|---|
| Some small and handy scripts I've written for Windows. Compress every single *.cad file with 7zip: #!/usr/bin/perl -w # # 2008-03-12/TB # use strict; my @f… | perl, windows | |
| Simple replace How to edit a bunch of files with one simple command: perl -pi.bak -e 's/bad/good/' ~/files.*.conf Replaces occurence of 'bad' with 'good'… | perl, scripting |