https://wiki.gnome.org/Projects/Tracker/WhatIsTracker
Daily Archives: March 15, 2018
GNU Diffutils is a package of several programs related to finding differences between files
https://www.computerhope.com/unix/udiff.htm
fold: Wrap input lines to fit in specified width
$cat test.pl use strict; use File::Rename (); use Pod::Usage; main() unless caller; sub main { my $options = File::Rename::Options::GetOptions or pod2usage; mod_version() if $options->{show_version}; pod2usage( -verbose => 2 ) if $options->{show_manual}; pod2usage( -exitval => 1 ) if $options->{show_help}; @ARGV = map {glob} @ARGV if $^O =~ m{Win}msx; File::Rename::rename(\@ARGV, $options); } sub mod_version { print __FILE__ …
Continue reading “fold: Wrap input lines to fit in specified width”