summaryrefslogtreecommitdiffhomepage
path: root/src/prj
diff options
context:
space:
mode:
Diffstat (limited to 'src/prj')
-rw-r--r--src/prj/index.gsp2
-rw-r--r--src/prj/mkpass/index.gsp4
-rw-r--r--src/prj/mmv/index.gsp18
-rw-r--r--src/prj/totp/index.gsp2
4 files changed, 13 insertions, 13 deletions
diff --git a/src/prj/index.gsp b/src/prj/index.gsp
index a6e773c..1583fe1 100644
--- a/src/prj/index.gsp
+++ b/src/prj/index.gsp
@@ -27,7 +27,7 @@ html lang="en" {
p {-Posts:}
ul {
- li {a href="totp" {-totp — generate TOTP codes}}
+ li {a href="totp" {-totp — generate m4_abbr(TOTP) codes}}
li {a href="mkpass" {-mkpass — make a password}}
li {a href="mmv" {-mmv, mpc — mapped file moves and -copies}}
}
diff --git a/src/prj/mkpass/index.gsp b/src/prj/mkpass/index.gsp
index 145b5f7..e780993 100644
--- a/src/prj/mkpass/index.gsp
+++ b/src/prj/mkpass/index.gsp
@@ -15,8 +15,8 @@ html lang="en" {
over a period of a week or so. He did it because Microsoft was
largely perceived as evil, and his aim was to create a programming
platform in the Netscape navigator. That way, the browser would run
- everywhere, and the OS wouldn’t matter as much. HAHA! Down with
- Microsoft. You can see how well that worked out.
+ everywhere, and the m4_abbr(OS) wouldn’t matter as much. HAHA! Down
+ with Microsoft. You can see how well that worked out.
}
}
figcaption {-Sahil Malik}
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.
}
}
diff --git a/src/prj/totp/index.gsp b/src/prj/totp/index.gsp
index a0308a2..50bfbd3 100644
--- a/src/prj/totp/index.gsp
+++ b/src/prj/totp/index.gsp
@@ -33,7 +33,7 @@ html lang="en" {
li {a href="#prologue" {-Prologue}}
li {a href="#terms" {-Terminology}}
li {a href="#usage" {-Basic Usage}}
- li {a href="#qr" {-Working with QR Codes}}
+ li {a href="#qr" {-Working with m4_abbr(QR) Codes}}
}
h2 #prologue {-Prologue}