/usr/bin/file-rename
Usage:
rename [ -h|-m|-V ] [ -v ] [ -n ] [ -f ] [ -e|-E perlexpr]*|perlexpr
[ files ]
Options:
-v, -verbose
Verbose: print names of files successfully renamed.
-n, -nono
No action: print names of files to be renamed, but don't rename.
-f, -force
Over write: allow existing files to be over-written.
-h, -help
Help: print SYNOPSIS and OPTIONS.
-m, -man
Manual: print manual page.
-V, -version
Version: show version number.
-e Expression: code to act on files name.
May be repeated to build up code (like "perl -e"). If no -e, the
first argument is used as code.
-E Statement: code to act on files name, as -e but terminated by
';'.
touch 'a:b'
rename -e 's/:/_/' 'a:b'
s -l a_b
-rw-rw-r-- 1 sergueik sergueik 0 Jun 28 16:08 a_b
man rename
RENAME(1p) User Contributed Perl Documentation RENAME(1p)
NAME
rename - renames multiple files
SYNOPSIS
rename [ -h|-m|-V ] [ -v ] [ -n ] [ -f ] [ -e|-E perlexpr]*|perlexpr
[ files ]
DESCRIPTION
"rename" renames the filenames supplied according to the rule specified
as the first argument. The perlexpr argument is a Perl expression
which is expected to modify ...
chromeDevTools.send(Network.enable(Optional.of(100000000), Optional.empty(),
Optional.empty()));
chromeDevTools.addListener(Network.responseReceived(),
(ResponseReceived event) -> { System.err.println(event.getResponse().getStatus()); });
chromeDevTools.send(Network.setCacheDisabled(true));
driver.get(url);
chromeDevTools.clearListeners();
replicaSetConfigurationSettings.configuration="$(cat deploy.conf)"
for T in $(cat a.json) ; do echo $T; done
{
"foo":
"bar"
}
for T in "$(cat a.json)" ; do echo $T; done
{ "foo": "bar" }