summaryrefslogtreecommitdiffhomepage
path: root/src/prj/mmv/index.gsp
diff options
context:
space:
mode:
Diffstat (limited to 'src/prj/mmv/index.gsp')
-rw-r--r--src/prj/mmv/index.gsp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/prj/mmv/index.gsp b/src/prj/mmv/index.gsp
index 185d93e..7dc8d3b 100644
--- a/src/prj/mmv/index.gsp
+++ b/src/prj/mmv/index.gsp
@@ -195,7 +195,7 @@ html lang="en" {
input will be referred to as the @em{-input files}. Once all the input
files have been read, the utility specified by the arguments is spawned;
in this case that would be @code{-sed} with the argument
- @code{-'s/[A-Z]/‌\\L_&/g'}. The input files are then piped into
+ @code{-'s/[A-Z]/‌\\L_&/g'}. The input files are then piped into
@code{-sed} the exact same way that they would have been if we ran the
above commands without @code{-mmv}, and the output of @code{-sed} then
forms what will be referred to as the @em{-output files}. Once a
@@ -216,7 +216,7 @@ html lang="en" {
p {-
In the above example @code{-mmv} reads 2 lines from standard input,
those being @em{-LICENSE} and @em{-README}. Those are our 2 input files
- now. The @code{-tr} utility is then spawned and the input files are
+ now. The @code{-tr} utility is then spawned and the input files are
piped into it. We can simulate this in the shell:
}
@@ -323,7 +323,7 @@ html lang="en" {
@code{--0} flag to @code{-mmv}. This will tell @code{-mmv} that we want
to use the NUL-byte as our input separator and not the newline. We also
need @code{-ls} to actually provide us with the filenames delimited by
- NUL-bytes. Luckily m4_abbr(GNU) @code{-ls} gives us the @code{---zero}
+ NUL-bytes. Luckily m4_abbr(GNU) @code{-ls} gives us the @code{---zero}
flag to do just that:
}
@@ -379,7 +379,7 @@ html lang="en" {
newline-separated input, it reversed out NUL-byte separators and now
gives us 3 outputs. Luckily the folks over at @em{-util-linux} provided
us with the @code{--0} flag here too, so that we can properly handle
- NUL-delimited input. Combining all of this together we get a final
+ NUL-delimited input. Combining all of this together we get a final
working product:
}
@@ -505,7 +505,7 @@ html lang="en" {
p {-
When compared to the standard @code{-for f in *; do mv $f …; done} or
@code{-ls | … | xargs -L2 mv} constructs, @code{-mmv} is significantly
- more safe to use. These are some of the safety features that are built
+ more safe to use. These are some of the safety features that are built
into the tool:
}
@@ -548,7 +548,7 @@ html lang="en" {
directory will be automatically removed, but it remains when things go
wrong so that you can recover any missing data. The names of the
backup-subdirectories in the @code{-$XDG_CACHE_DIR/mmv} directory are
- timestamps of when the directories were created. This should make it
+ timestamps of when the directories were created. This should make it
easier for you to figure out which directory you need to recover if you
happen to have multiple of these.
}
@@ -558,9 +558,9 @@ html lang="en" {
aside {
p {-
All of these examples are ripped straight from the @code{-mmv(1)}
- manual page. If you installed @code{-mmv} through a package manager or
- via @code{-make install} then you should have the manual installed on
- your system.
+ manual page. If you installed @code{-mmv} through a package manager
+ or via @code{-make install} then you should have the manual installed
+ on your system.
}
}