Skip to content

Commit

Permalink
One sentence per line (#54)
Browse files Browse the repository at this point in the history
* Remove trailing whitespace

* One line per sentence

* Update docs/ABOUT.md

Co-authored-by: Victor Goff <[email protected]>

---------

Co-authored-by: Erik Schierboom <[email protected]>
Co-authored-by: Victor Goff <[email protected]>
  • Loading branch information
3 people authored Sep 5, 2024
1 parent c8aa597 commit 33621a8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
13 changes: 5 additions & 8 deletions docs/ABOUT.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
# About

Batch scripting is a scripting language used primarily for running commands in the Windows Command Prompt (cmd.exe).
It allows users to automate tasks, manage files, and control the system environment through a series of command-line
instructions.
Batch scripting is a scripting language used primarily for running commands in the Windows Command Prompt (cmd.exe).
It allows users to automate tasks, manage files, and control the system environment through a series of command-line instructions.

Although Batch scripting is straightforward, it can handle a wide range of tasks, from simple file operations to
more complex automation processes.
Although Batch scripting is straightforward, it can handle a wide range of tasks, from simple file operations to more complex automation processes.

Batch files have a .bat or .cmd extension and can be executed directly by the Windows command interpreter.
Batch files have a `.bat` or `.cmd` extension and can be executed directly by the Windows command interpreter.

The flexibility of Batch scripting makes it a powerful tool for system administrators, developers, and power users
who need to automate routine tasks or create custom command-line tools.
The flexibility of Batch scripting makes it a powerful tool for system administrators, developers, and power users who need to automate routine tasks or create custom command-line tools.
4 changes: 2 additions & 2 deletions docs/INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ brew install --cask --no-quarantine wine-stable
1. If your system is 64 bit, enable 32 bit architecture (if you haven't already):

```bash
sudo dpkg --add-architecture i386
sudo dpkg --add-architecture i386
```

2. Add the WineHQ repository:
Expand All @@ -47,7 +47,7 @@ sudo apt install --install-recommends winehq-stable
1. If your system is 64 bit, enable 32 bit architecture (if you haven't already):

```bash
sudo dpkg --add-architecture i386
sudo dpkg --add-architecture i386
```

2. Add the WineHQ repository:
Expand Down
2 changes: 1 addition & 1 deletion docs/RESOURCES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Social media

- [StackOverflow ](https://stackoverflow.com/questions/tagged/batch-file) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions.
- [StackOverflow](https://stackoverflow.com/questions/tagged/batch-file) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions.
- [/r/Batch](https://www.reddit.com/r/Batch/) is the Batch subreddit.

## Videos
Expand Down
2 changes: 1 addition & 1 deletion docs/SNIPPET.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
setlocal enabledelayedexpansion

set /p backupDir=Enter backup directory:
set /p backupDir=Enter backup directory:
if not exist "!backupDir!" mkdir "!backupDir!"
for %%f in (*.txt) do (
set timestamp=!date:~-4,4!!date:~-10,2!!date:~-7,2!_!time:~0,2!!time:~3,2!
Expand Down
7 changes: 5 additions & 2 deletions docs/TESTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ call {slug}Test.bat

## Solving the exercise

Solving an exercise means making all its tests pass. When all tests have been pass, you'll have solved the exercise!
Solving an exercise means making all its tests pass.
When all tests have been pass, you'll have solved the exercise!

To help you get started, each exercise comes with a stub implementation file. You can use this file as a starting point for building your solution. Feel free to remove or change this file if you think it is the right thing to do.
To help you get started, each exercise comes with a stub implementation file.
You can use this file as a starting point for building your solution.
Feel free to remove or change this file if you think it is the right thing to do.

0 comments on commit 33621a8

Please sign in to comment.