*: fix typos in command names (#11730)
* *: fix typos in command names * command name fixes in other languages * fix incorrectly translated commands * change incorrect file name * qm move disk alias pages --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
15
scripts/wrong-filename.sh
Executable file
15
scripts/wrong-filename.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
set -e
|
||||
|
||||
for path in $(find . -name '*.md' -type f); do
|
||||
COMMAND_NAME_FILE=$(basename "$path" | head -c-4 | tr '-' ' ' | tr '[:upper:]' '[:lower:]')
|
||||
COMMAND_NAME_PAGE=$(head -n1 "$path" | tail -c+3 | tr '-' ' ' | tr '[:upper:]' '[:lower:]')
|
||||
if [ "$COMMAND_NAME_FILE" != "$COMMAND_NAME_PAGE" ]; then
|
||||
echo "$path"
|
||||
echo "$COMMAND_NAME_FILE"
|
||||
echo "$COMMAND_NAME_PAGE"
|
||||
echo "\n\n"
|
||||
fi
|
||||
done
|
Reference in New Issue
Block a user