From 5a26958e942c16ccf9eb1a58bfe4e410b1707e64 Mon Sep 17 00:00:00 2001 From: Ruben Vereecken Date: Sat, 16 Jan 2016 15:12:05 +0100 Subject: [PATCH] Fixed English tenses as reported by tldr-lint --- pages/common/alias.md | 6 +++--- pages/common/bundle.md | 2 +- pages/common/gifsicle.md | 4 ++-- pages/common/mkdir.md | 4 ++-- pages/common/mysqldump.md | 2 +- pages/common/redis-cli.md | 2 +- pages/common/rmdir.md | 4 ++-- pages/common/srm.md | 2 +- pages/common/sshfs.md | 6 +++--- pages/common/sudo.md | 2 +- pages/common/vim.md | 2 +- pages/common/vimtutor.md | 2 +- pages/common/who.md | 4 ++-- pages/linux/dd.md | 2 +- pages/linux/xargs.md | 2 +- pages/osx/dd.md | 2 +- pages/osx/ditto.md | 2 +- pages/osx/qlmanage.md | 2 +- 18 files changed, 26 insertions(+), 26 deletions(-) diff --git a/pages/common/alias.md b/pages/common/alias.md index f25dadc2ab..ba50b3f3f7 100644 --- a/pages/common/alias.md +++ b/pages/common/alias.md @@ -3,7 +3,7 @@ > Creates an alias for a word when used. > As the first word of a command. -- Creating a generic alias: +- Create a generic alias: `alias {{word}}="{{command}}"` @@ -15,10 +15,10 @@ `alias -p` -- Turning rm an interative command: +- Turn rm an interative command: `alias {{rm}}="{{rm -i}}"` -- Overriding la as ls -a: +- Override la as ls -a: `alias {{la}}="{{ls -a}}"` diff --git a/pages/common/bundle.md b/pages/common/bundle.md index c6ee3fbab0..3b63b55492 100644 --- a/pages/common/bundle.md +++ b/pages/common/bundle.md @@ -2,7 +2,7 @@ > Dependency manager for the Ruby programming language. -- Installs all gems defined in the gemfile expected in the working directory: +- Install all gems defined in the gemfile expected in the working directory: `bundle install` diff --git a/pages/common/gifsicle.md b/pages/common/gifsicle.md index e960d463a7..d4fc730dd7 100644 --- a/pages/common/gifsicle.md +++ b/pages/common/gifsicle.md @@ -2,11 +2,11 @@ > Create gifs. -- Making a GIF animation with gifsicle: +- Make a GIF animation with gifsicle: `gifsicle --delay={{10}} --loop *.gif > {{anim.gif}}` -- Extracting frames from an animation: +- Extract frames from an animation: `gifsicle {{anim.gif}} '#0' > {{firstframe.gif}}` diff --git a/pages/common/mkdir.md b/pages/common/mkdir.md index 3934c18af3..392e2ffa5b 100644 --- a/pages/common/mkdir.md +++ b/pages/common/mkdir.md @@ -2,10 +2,10 @@ > Creates a directory. -- Creates a directory in current folder or given path: +- Create a directory in current folder or given path: `mkdir {{directory}}` -- Creates directories recursively (useful for creating nested dirs): +- Create directories recursively (useful for creating nested dirs): `mkdir -p {{path}}` diff --git a/pages/common/mysqldump.md b/pages/common/mysqldump.md index ad7909ea53..97e2bcec22 100644 --- a/pages/common/mysqldump.md +++ b/pages/common/mysqldump.md @@ -6,6 +6,6 @@ `mysqldump -u {{user}} --password {{database_name}} > {{filename.sql}}` -- Restoring a backup, user will be prompted for a password: +- Restore a backup, user will be prompted for a password: `mysql -u {{user}} --password {{database_name}} < {{filename.sql}}` diff --git a/pages/common/redis-cli.md b/pages/common/redis-cli.md index 09031515d5..0dee280f2d 100644 --- a/pages/common/redis-cli.md +++ b/pages/common/redis-cli.md @@ -15,6 +15,6 @@ `redis-cli -a {{password}}` -- Executes Redis command: +- Execute Redis command: `redis-cli {{redis command}}` diff --git a/pages/common/rmdir.md b/pages/common/rmdir.md index 99e459983e..cd9d02bcc1 100644 --- a/pages/common/rmdir.md +++ b/pages/common/rmdir.md @@ -2,10 +2,10 @@ > Removes a directory. -- Removes directory, provided it is empty. Use `rm` to remove not empty directories: +- Remove directory, provided it is empty. Use `rm` to remove not empty directories: `rmdir {{directory}}` -- Removes directories recursively (useful for nested dirs): +- Remove directories recursively (useful for nested dirs): `rmdir -p {{path}}` diff --git a/pages/common/srm.md b/pages/common/srm.md index 906585dbc7..12aa163ad0 100644 --- a/pages/common/srm.md +++ b/pages/common/srm.md @@ -3,7 +3,7 @@ > Securely remove files or directories. > Overwrites the existing data one or multiple. Drop in replacement for rm. -- Removes a file after overwriting (single pass, 7 pass, 35 pass): +- Remove a file after overwriting (single pass, 7 pass, 35 pass): `srm -s {{/path/to/file}}` `srm -m {{/path/to/file}}` diff --git a/pages/common/sshfs.md b/pages/common/sshfs.md index 738db54c26..0bf08a5fe8 100644 --- a/pages/common/sshfs.md +++ b/pages/common/sshfs.md @@ -2,15 +2,15 @@ > Filesystem client based on ssh. -- Mounting remote directory: +- Mount remote directory: `sshfs {{username}}@{{remote_host}}:{{remote_directory}} {{mountpoint}}` -- Unmounting remote directory: +- Unmount remote directory: `fusermount -u {{mountpoint}}` -- Mounting remote directory from server with specific port: +- Mount remote directory from server with specific port: `sshfs {{username}}@{{remote_host}}:{{remote_directory}} -p {{2222}}` diff --git a/pages/common/sudo.md b/pages/common/sudo.md index 7970a81e31..79b15a5c1b 100644 --- a/pages/common/sudo.md +++ b/pages/common/sudo.md @@ -2,7 +2,7 @@ > Execute a command as another user. -- Listing of an unreadable directory: +- List of an unreadable directory: `sudo {{ls}} {{/usr/local/scrt}}` diff --git a/pages/common/vim.md b/pages/common/vim.md index cd7a1b464a..961566668b 100644 --- a/pages/common/vim.md +++ b/pages/common/vim.md @@ -14,6 +14,6 @@ `view {{file}}` -- Exiting vim: +- Exit vim: `[Esc] (to switch to normal mode), then :q` diff --git a/pages/common/vimtutor.md b/pages/common/vimtutor.md index 20663b0426..aae1ce9708 100644 --- a/pages/common/vimtutor.md +++ b/pages/common/vimtutor.md @@ -6,6 +6,6 @@ `vimtutor {{language}}` -- Exiting the tutor: +- Exit the tutor: `[Esc] (to switch to normal mode), then :q` diff --git a/pages/common/who.md b/pages/common/who.md index b63ed20fb7..24b6ceee0d 100644 --- a/pages/common/who.md +++ b/pages/common/who.md @@ -2,11 +2,11 @@ > Display who is logged in and related data (processes, boot time). -- Displays the username, line, and time of all currently logged-in sessions: +- Display the username, line, and time of all currently logged-in sessions: `who` -- Displays information only for the current terminal session: +- Display information only for the current terminal session: `who am i` diff --git a/pages/linux/dd.md b/pages/linux/dd.md index a1e9c450ee..313054b5be 100644 --- a/pages/linux/dd.md +++ b/pages/linux/dd.md @@ -10,7 +10,7 @@ `dd if=/dev/{{source_drive}} of=/dev/{{dest_drive}} bs=4M conv=noerror` -- Generating a file of 100 random bytes by using kernel random driver: +- Generate a file of 100 random bytes by using kernel random driver: `dd if=/dev/urandom of={{random_file}} bs=100 count=1` diff --git a/pages/linux/xargs.md b/pages/linux/xargs.md index 28c282c463..e61debb848 100644 --- a/pages/linux/xargs.md +++ b/pages/linux/xargs.md @@ -6,7 +6,7 @@ `{{arguments}} | xargs {{command}}` -- Handling whitespace in arguments: +- Handle whitespace in arguments: `{{arguments_null_terminated}} | xargs -0 {{command}}` diff --git a/pages/osx/dd.md b/pages/osx/dd.md index f437e0a4c5..8ca14df8da 100644 --- a/pages/osx/dd.md +++ b/pages/osx/dd.md @@ -10,7 +10,7 @@ `dd if=/dev/{{source_drive}} of=/dev/{{dest_drive}} bs=4m conv=noerror` -- Generating a file of 100 random bytes by using kernel random driver: +- Generate a file of 100 random bytes by using kernel random driver: `dd if=/dev/urandom of={{random_file}} bs=100 count=1` diff --git a/pages/osx/ditto.md b/pages/osx/ditto.md index 569ed9b8be..039824b664 100644 --- a/pages/osx/ditto.md +++ b/pages/osx/ditto.md @@ -2,7 +2,7 @@ > Copy files and folders. -- Overwrites contents of destination folder with contents of source folder: +- Overwrite contents of destination folder with contents of source folder: `ditto {{path/to/source}} {{path/to/destination}}` diff --git a/pages/osx/qlmanage.md b/pages/osx/qlmanage.md index 5a944c3122..f2ce2a7586 100644 --- a/pages/osx/qlmanage.md +++ b/pages/osx/qlmanage.md @@ -2,7 +2,7 @@ > QuickLook server tool. -- Displays QuickLook for one or multiple files: +- Display QuickLook for one or multiple files: `quicklook -p {{filename}} {{filename2}}`