diff --git a/pages/common/atoum.md b/pages/common/atoum.md index 426b10dbe..78db1cd84 100644 --- a/pages/common/atoum.md +++ b/pages/common/atoum.md @@ -3,7 +3,7 @@ > A simple, modern and intuitive unit testing framework for PHP. > More information: . -- Initialise a configuration file: +- Initialize a configuration file: `atoum --init` diff --git a/pages/common/behat.md b/pages/common/behat.md index 14d88b17e..2613e06a2 100644 --- a/pages/common/behat.md +++ b/pages/common/behat.md @@ -3,7 +3,7 @@ > A PHP framework for Behaviour-Driven Development. > More information: . -- Initialise a new Behat project: +- Initialize a new Behat project: `behat --init` diff --git a/pages/common/blackfire.md b/pages/common/blackfire.md index c4e6860c1..ae4d7df53 100644 --- a/pages/common/blackfire.md +++ b/pages/common/blackfire.md @@ -3,7 +3,7 @@ > A command-line profiling tool for PHP. > More information: . -- Initialise and configure the Blackfire client: +- Initialize and configure the Blackfire client: `blackfire config` diff --git a/pages/common/borg.md b/pages/common/borg.md index 48fc311a8..b9829f78d 100644 --- a/pages/common/borg.md +++ b/pages/common/borg.md @@ -4,7 +4,7 @@ > Creates local or remote backups that are mountable as filesystems. > More information: . -- Initialise a (local) repository: +- Initialize a (local) repository: `borg init {{path/to/repo_directory}}` diff --git a/pages/common/colordiff.md b/pages/common/colordiff.md index cf5e3eb41..e8d86eade 100644 --- a/pages/common/colordiff.md +++ b/pages/common/colordiff.md @@ -1,7 +1,7 @@ # colordiff > A tool to colorize diff output. -> The Perl script colordiff is a wrapper for `diff` and produces the same output but with pretty syntax highlighting. Colour schemes can be customized. +> The Perl script colordiff is a wrapper for `diff` and produces the same output but with pretty syntax highlighting. Color schemes can be customized. > More information: . - Compare files: diff --git a/pages/common/composer-require-checker.md b/pages/common/composer-require-checker.md index 3fcb9455c..0a7470133 100644 --- a/pages/common/composer-require-checker.md +++ b/pages/common/composer-require-checker.md @@ -1,12 +1,12 @@ # composer-require-checker -> A CLI tool to analyse Composer dependencies for soft dependencies. +> A CLI tool to analyze Composer dependencies for soft dependencies. > More information: . -- Analyse a Composer JSON file: +- Analyze a Composer JSON file: `composer-require-checker check {{path/to/composer.json}}` -- Analyse a Composer JSON file with a specific configuration: +- Analyze a Composer JSON file with a specific configuration: `composer-require-checker check --config-file {{path/to/config.json}} {{path/to/composer.json}}` diff --git a/pages/common/dfc.md b/pages/common/dfc.md index e03c52be2..82fa516c5 100644 --- a/pages/common/dfc.md +++ b/pages/common/dfc.md @@ -1,9 +1,9 @@ # dfc -> Gives an overview of the filesystem disk space usage with colours and graphs. +> Gives an overview of the filesystem disk space usage with colors and graphs. > More information: . -- Display filesystems and their disk usage in human-readable form with colours and graphs: +- Display filesystems and their disk usage in human-readable form with colors and graphs: `dfc` @@ -11,7 +11,7 @@ `dfc -a` -- Display filesystems without colour: +- Display filesystems without color: `dfc -c never` diff --git a/pages/common/dig.md b/pages/common/dig.md index 710b8a347..4eec701c8 100644 --- a/pages/common/dig.md +++ b/pages/common/dig.md @@ -1,6 +1,6 @@ # dig -> DNS Lookup utility. +> DNS lookup utility. > More information: . - Lookup the IP(s) associated with a hostname (A records): diff --git a/pages/common/envoy.md b/pages/common/envoy.md index ec88ddaa6..f7256027b 100644 --- a/pages/common/envoy.md +++ b/pages/common/envoy.md @@ -3,7 +3,7 @@ > A PHP-based task manager for Laravel remote servers. > More information: . -- Initialise a configuration file: +- Initialize a configuration file: `envoy init {{host_name}}` diff --git a/pages/common/flex.md b/pages/common/flex.md index d88b14628..07c223952 100644 --- a/pages/common/flex.md +++ b/pages/common/flex.md @@ -1,16 +1,16 @@ # flex -> Lexical analyser generator. Based on `lex`. -> Given the specification for a lexical analyser, generates C code implementing it. +> Lexical analyzer generator. Based on `lex`. +> Given the specification for a lexical analyzer, generates C code implementing it. > More information: . -- Generate an analyser from a flex file: +- Generate an analyzer from a flex file: -`flex {{analyser.l}}` +`flex {{analyzer.l}}` - Specify the output file: -`flex --outfile {{analyser.c}} {{analyser.l}}` +`flex --outfile {{analyzer.c}} {{analyzer.l}}` - Compile a C file generated by flex: diff --git a/pages/common/fls.md b/pages/common/fls.md index 8fcf91b7a..90b20375b 100644 --- a/pages/common/fls.md +++ b/pages/common/fls.md @@ -7,10 +7,10 @@ `fls -r -m {{C:}} {{/dev/loop1p1}}` -- Analyse a single partition, providing the sector offset at which the filesystem starts in the image: +- Analyze a single partition, providing the sector offset at which the filesystem starts in the image: `fls -r -m {{C:}} -o {{sector}} {{path/to/image_file}}` -- Analyse a single partition, providing the timezone of the original system: +- Analyze a single partition, providing the timezone of the original system: `fls -r -m {{C:}} -z {{timezone}} {{/dev/loop1p1}}` diff --git a/pages/common/gdalbuildvrt.md b/pages/common/gdalbuildvrt.md index 45413a3d7..3f6589d01 100644 --- a/pages/common/gdalbuildvrt.md +++ b/pages/common/gdalbuildvrt.md @@ -15,6 +15,6 @@ `gdalbuildvrt -separate {{path/to/rgb.vrt}} {{path/to/red.tif}} {{path/to/green.tif}} {{path/to/blue.tif}}` -- Make a virtual mosaic with blue background colour (RGB: 0 0 255): +- Make a virtual mosaic with blue background color (RGB: 0 0 255): `gdalbuildvrt -hidenodata -vrtnodata "{{0 0 255}}" {{path/to/output.vrt}} {{path/to/input_directory/*.tif}}` diff --git a/pages/common/git-check-ignore.md b/pages/common/git-check-ignore.md index dd90c41ff..e3984de73 100644 --- a/pages/common/git-check-ignore.md +++ b/pages/common/git-check-ignore.md @@ -1,6 +1,6 @@ # git check-ignore -> Analyse and debug Git ignore / exclude (".gitignore") files. +> Analyze and debug Git ignore / exclude (".gitignore") files. > More information: . - Check whether a file or directory is ignored: diff --git a/pages/common/git-lfs.md b/pages/common/git-lfs.md index b96647259..9038298b0 100644 --- a/pages/common/git-lfs.md +++ b/pages/common/git-lfs.md @@ -3,7 +3,7 @@ > Work with large files in Git repositories. > More information: . -- Initialise Git LFS: +- Initialize Git LFS: `git lfs install` diff --git a/pages/common/github-label-sync.md b/pages/common/github-label-sync.md index b4cd16e1e..df6963f53 100644 --- a/pages/common/github-label-sync.md +++ b/pages/common/github-label-sync.md @@ -1,17 +1,17 @@ # github-label-sync -> A command-line interface for synchronising GitHub labels. +> A command-line interface for synchronizing GitHub labels. > More information: . -- Synchronise labels using a local `labels.json` file: +- Synchronize labels using a local `labels.json` file: `github-label-sync --access-token {{token}} {{repository_name}}` -- Synchronise labels using a specific labels JSON file: +- Synchronize labels using a specific labels JSON file: `github-label-sync --access-token {{token}} --labels {{url|path/to/json_file}} {{repository_name}}` -- Perform a dry run instead of actually synchronising labels: +- Perform a dry run instead of actually synchronizing labels: `github-label-sync --access-token {{token}} --dry-run {{repository_name}}` @@ -19,6 +19,6 @@ `github-label-sync --access-token {{token}} --allow-added-labels {{repository_name}}` -- Synchronise using the `GITHUB_ACCESS_TOKEN` environment variable: +- Synchronize using the `GITHUB_ACCESS_TOKEN` environment variable: `github-label-sync {{repository_name}}` diff --git a/pages/common/gopass.md b/pages/common/gopass.md index f5db18968..0f2e63f34 100644 --- a/pages/common/gopass.md +++ b/pages/common/gopass.md @@ -3,7 +3,7 @@ > Standard Unix Password Manager for Teams. Written in Go. > More information: . -- Initialise the configuration settings: +- Initialize the configuration settings: `gopass init` diff --git a/pages/common/hg-init.md b/pages/common/hg-init.md index beb7c2658..014662897 100644 --- a/pages/common/hg-init.md +++ b/pages/common/hg-init.md @@ -3,10 +3,10 @@ > Create a new repository in the specified directory. > More information: . -- Initialise a new repository in the current directory: +- Initialize a new repository in the current directory: `hg init` -- Initialise a new repository in the specified directory: +- Initialize a new repository in the specified directory: `hg init {{path/to/directory}}` diff --git a/pages/common/infection.md b/pages/common/infection.md index 46a45b62d..7ca2bde8d 100644 --- a/pages/common/infection.md +++ b/pages/common/infection.md @@ -3,7 +3,7 @@ > A mutation testing framework for PHP. > More information: . -- Analyse code using the configuration file (or create one if it does not exist): +- Analyze code using the configuration file (or create one if it does not exist): `infection` diff --git a/pages/common/jigsaw.md b/pages/common/jigsaw.md index c98329e23..0c704f055 100644 --- a/pages/common/jigsaw.md +++ b/pages/common/jigsaw.md @@ -3,11 +3,11 @@ > A Laravel-based static site builder for PHP. > More information: . -- Initialise a project: +- Initialize a project: `jigsaw init` -- Initialise a project using a starter template: +- Initialize a project using a starter template: `jigsaw init {{template_name}}` diff --git a/pages/common/lex.md b/pages/common/lex.md index 154f80e5b..cfa562194 100644 --- a/pages/common/lex.md +++ b/pages/common/lex.md @@ -1,16 +1,16 @@ # lex -> Lexical analyser generator. -> Given the specification for a lexical analyser, generates C code implementing it. +> Lexical analyzer generator. +> Given the specification for a lexical analyzer, generates C code implementing it. > More information: . -- Generate an analyser from a Lex file: +- Generate an analyzer from a Lex file: -`lex {{analyser.l}}` +`lex {{analyzer.l}}` - Specify the output file: -`lex {{analyser.l}} --outfile {{analyser.c}}` +`lex {{analyzer.l}} --outfile {{analyzer.c}}` - Compile a C file generated by Lex: diff --git a/pages/common/nokogiri.md b/pages/common/nokogiri.md index d9d93d22c..41fc07c77 100644 --- a/pages/common/nokogiri.md +++ b/pages/common/nokogiri.md @@ -11,7 +11,7 @@ `nokogiri {{url|path/to/file}} --type {{xml|html}}` -- Load a specific initialisation file before parsing: +- Load a specific initialization file before parsing: `nokogiri {{url|path/to/file}} -C {{path/to/config_file}}` diff --git a/pages/common/opt.md b/pages/common/opt.md index 00fff3a15..83cc365d7 100644 --- a/pages/common/opt.md +++ b/pages/common/opt.md @@ -1,6 +1,6 @@ # opt -> A tool that takes LLVM source files and runs specified optimizations and/or analyses on them. +> A tool that takes LLVM source files and runs specified optimizations and/or analysis on them. > More information: . - Run an optimization or analysis on a bitcode file: diff --git a/pages/common/pest.md b/pages/common/pest.md index 223da6e33..fe5f88fdf 100644 --- a/pages/common/pest.md +++ b/pages/common/pest.md @@ -3,7 +3,7 @@ > A PHP testing framework with a focus on simplicity. > More information: . -- Initialise a standard Pest configuration in the current directory: +- Initialize a standard Pest configuration in the current directory: `pest --init` diff --git a/pages/common/phan.md b/pages/common/phan.md index b219863fe..fad67ed05 100644 --- a/pages/common/phan.md +++ b/pages/common/phan.md @@ -11,11 +11,11 @@ `phan --init --init-level {{level}}` -- Analyse the current directory: +- Analyze the current directory: `phan` -- Analyse one or more directories: +- Analyze one or more directories: `phan --directory {{path/to/directory}} --directory {{path/to/another_directory}}` diff --git a/pages/common/phing.md b/pages/common/phing.md index adbc60147..d9407491a 100644 --- a/pages/common/phing.md +++ b/pages/common/phing.md @@ -7,7 +7,7 @@ `phing` -- Initialise a new build file: +- Initialize a new build file: `phing -i {{path/to/build.xml}}` diff --git a/pages/common/phpcpd.md b/pages/common/phpcpd.md index 4eaf5d2dd..fbefeb0f6 100644 --- a/pages/common/phpcpd.md +++ b/pages/common/phpcpd.md @@ -3,11 +3,11 @@ > A copy and paste detector for PHP code. > More information: . -- Analyse duplicated code for a specific file or directory: +- Analyze duplicated code for a specific file or directory: `phpcpd {{path/to/file_or_directory}}` -- Analyse using fuzzy matching for variable names: +- Analyze using fuzzy matching for variable names: `phpcpd --fuzzy {{path/to/file_or_directory}}` diff --git a/pages/common/phploc.md b/pages/common/phploc.md index b6d1f4428..107c2c72f 100644 --- a/pages/common/phploc.md +++ b/pages/common/phploc.md @@ -3,7 +3,7 @@ > A tool for quickly measuring the size and analyzing the structure of a PHP project. > More information: . -- Analyse a directory and print the result: +- Analyze a directory and print the result: `phploc {{path/to/directory}}` diff --git a/pages/common/phpstan.md b/pages/common/phpstan.md index 9c20f289f..32e13dfde 100644 --- a/pages/common/phpstan.md +++ b/pages/common/phpstan.md @@ -7,19 +7,19 @@ `phpstan analyse --help` -- Analyse the specified space-separated directories: +- Analyze the specified space-separated directories: `phpstan analyse {{path/to/directory}}` -- Analyse a directory using a configuration file: +- Analyze a directory using a configuration file: `phpstan analyse {{path/to/directory}} --configuration {{path/to/config}}` -- Analyse using a specific rule level (0-7, higher is stricter): +- Analyze using a specific rule level (0-7, higher is stricter): `phpstan analyse {{path/to/directory}} --level {{level}}` -- Specify an autoload file to load before analysing: +- Specify an autoload file to load before analyzing: `phpstan analyse {{path/to/directory}} --autoload-file {{path/to/autoload_file}}` diff --git a/pages/common/progpilot.md b/pages/common/progpilot.md index 6c330e757..ab6d16c8a 100644 --- a/pages/common/progpilot.md +++ b/pages/common/progpilot.md @@ -3,11 +3,11 @@ > A PHP static analysis tool for detecting security vulnerabilities. > More information: . -- Analyse the current directory: +- Analyze the current directory: `progpilot` -- Analyse a specific file or directory: +- Analyze a specific file or directory: `progpilot {{path/to/file_or_directory}}` diff --git a/pages/common/psalm.md b/pages/common/psalm.md index 098283b57..e96f67ecd 100644 --- a/pages/common/psalm.md +++ b/pages/common/psalm.md @@ -7,15 +7,15 @@ `psalm --init` -- Analyse the current working directory: +- Analyze the current working directory: `psalm` -- Analyse a specific directory or file: +- Analyze a specific directory or file: `psalm {{path/to/file_or_directory}}` -- Analyse a project with a specific configuration file: +- Analyze a project with a specific configuration file: `psalm --config {{path/to/psalm.xml}}` @@ -23,10 +23,10 @@ `psalm --show-info` -- Analyse a project and display statistics: +- Analyze a project and display statistics: `psalm --stats` -- Analyse a project in parallel with 4 threads: +- Analyze a project in parallel with 4 threads: `psalm --threads {{4}}` diff --git a/pages/common/rspec.md b/pages/common/rspec.md index 66c40855f..7b8d6b153 100644 --- a/pages/common/rspec.md +++ b/pages/common/rspec.md @@ -3,7 +3,7 @@ > Behavior-driven development testing framework written in Ruby to test Ruby code. > More information: . -- Initialise an .rspec config and a spec helper file: +- Initialize an .rspec config and a spec helper file: `rspec --init` diff --git a/pages/common/satis.md b/pages/common/satis.md index 62cadb018..1bdb9d1f6 100644 --- a/pages/common/satis.md +++ b/pages/common/satis.md @@ -3,7 +3,7 @@ > The command-line utility for the Satis static Composer repository. > More information: . -- Initialise a Satis configuration: +- Initialize a Satis configuration: `satis init {{satis.json}}` diff --git a/pages/common/sshfs.md b/pages/common/sshfs.md index d228fb498..9a36e8b1c 100644 --- a/pages/common/sshfs.md +++ b/pages/common/sshfs.md @@ -1,6 +1,6 @@ # sshfs -> Filesystem client based on ssh. +> Filesystem client based on SSH. > More information: . - Mount remote directory: diff --git a/pages/common/transcode.md b/pages/common/transcode.md index a5160cf65..248ca610f 100644 --- a/pages/common/transcode.md +++ b/pages/common/transcode.md @@ -3,11 +3,11 @@ > Transcode video and audio codecs, and convert between media formats. > More information: . -- Create stabilisation file to be able to remove camera shakes: +- Create stabilization file to be able to remove camera shakes: `transcode -J stabilize -i {{input_file}}` -- Remove camera shakes after creating stabilisation file, transform video using XviD: +- Remove camera shakes after creating stabilization file, transform video using XviD: `transcode -J transform -i {{input_file}} -y xvid -o {{output_file}}` diff --git a/pages/common/unison.md b/pages/common/unison.md index c380f36f2..6c3d68597 100644 --- a/pages/common/unison.md +++ b/pages/common/unison.md @@ -3,7 +3,7 @@ > Bidirectional file synchronisation tool. > More information: . -- Sync two directories (creates log first time these two directories are synchronised): +- Sync two directories (creates log first time these two directories are synchronized): `unison {{path/to/directory_1}} {{path/to/directory_2}}` diff --git a/pages/common/zeek.md b/pages/common/zeek.md index 0e6f2b5e7..c34be6e8f 100644 --- a/pages/common/zeek.md +++ b/pages/common/zeek.md @@ -1,6 +1,6 @@ # zeek -> Passive network traffic analyser. +> Passive network traffic analyzer. > Any output and log files will be saved to the current working directory. > More information: . diff --git a/pages/linux/dumpe2fs.md b/pages/linux/dumpe2fs.md index 5abe7ce8f..a4019694a 100644 --- a/pages/linux/dumpe2fs.md +++ b/pages/linux/dumpe2fs.md @@ -12,7 +12,7 @@ `dumpe2fs -b {{/dev/sdXN}}` -- Force display filesystem information even with non-recognisable feature flags: +- Force display filesystem information even with unrecognizable feature flags: `dumpe2fs -f {{/dev/sdXN}}` diff --git a/pages/linux/goaccess.md b/pages/linux/goaccess.md index 1ff650f05..2084789e0 100644 --- a/pages/linux/goaccess.md +++ b/pages/linux/goaccess.md @@ -11,7 +11,7 @@ `goaccess {{path/to/logfile}} --log-format={{format}}` -- Analyse a log from stdin: +- Analyze a log from stdin: `tail -f {{path/to/logfile}} | goaccess -` diff --git a/pages/linux/radeontop.md b/pages/linux/radeontop.md index 2e6463dab..a006e5de5 100644 --- a/pages/linux/radeontop.md +++ b/pages/linux/radeontop.md @@ -1,10 +1,10 @@ # radeontop -> Show utilisation of AMD GPUs. +> Show utilization of AMD GPUs. > May require root privileges depending on your system. > More information: . -- Show the utilisation of the default AMD GPU: +- Show the utilization of the default AMD GPU: `radeontop` diff --git a/pages/linux/reset.md b/pages/linux/reset.md index 0d3c7ca9a..f01957047 100644 --- a/pages/linux/reset.md +++ b/pages/linux/reset.md @@ -1,9 +1,9 @@ # reset -> Reinitialises the current terminal. Clears the entire terminal screen. +> Reinitializes the current terminal. Clears the entire terminal screen. > More information: . -- Reinitialise the current terminal: +- Reinitialize the current terminal: `reset` diff --git a/pages/linux/zramctl.md b/pages/linux/zramctl.md index c63f41eec..28a08e30c 100644 --- a/pages/linux/zramctl.md +++ b/pages/linux/zramctl.md @@ -16,10 +16,10 @@ `sudo modprobe zram num_devices={{2}}` -- Find and initialise the next free zram device to a 2 GB virtual drive using LZ4 compression: +- Find and initialize the next free zram device to a 2 GB virtual drive using LZ4 compression: `sudo zramctl --find --size {{2GB}} --algorithm {{lz4}}` -- List currently initialised devices: +- List currently initialized devices: `zramctl`