1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-16 15:52:47 +01:00

Fixed typos

This commit is contained in:
polluks 2023-10-10 15:12:19 +02:00
parent 5d6bc8149f
commit ed4816f3b1
3 changed files with 7 additions and 7 deletions

View File

@ -54,7 +54,7 @@
@REM start syncing messages. @REM start syncing messages.
@REM In case you are impatient, just remove --justfolders --dry @REM In case you are impatient, just remove --justfolders --dry
@REM in the firt place and go. Imapsync is not that bad by default anyway! @REM in the first place and go. Imapsync is not that bad by default anyway!
.\imapsync.exe --host1 "test1.lamiral.info" --user1 "test1" --password1 "secret1" ^ .\imapsync.exe --host1 "test1.lamiral.info" --user1 "test1" --password1 "secret1" ^

View File

@ -86,8 +86,8 @@
# "$@" will be replaced by the parameters of this script itself, # "$@" will be replaced by the parameters of this script itself,
# the one you are reading now. It's usefull if you want to # the one you are reading now. It's useful if you want to
# add temporarly a parameter for all runs without editing any file. # add temporarily a parameter for all runs without editing any file.
# For example, # For example,
# sync_parallel_curl.sh --justlogin # sync_parallel_curl.sh --justlogin
# will run all imapsync with the --justlogin parameter added. # will run all imapsync with the --justlogin parameter added.
@ -98,7 +98,7 @@ check_parallel_is_here() {
parallel --version > /dev/null || { echo "parallel command is not installed. Install it first."; return 1; } parallel --version > /dev/null || { echo "parallel command is not installed. Install it first."; return 1; }
} }
# First, there is no need to go further if the parallel command is not avalable # First, there is no need to go further if the parallel command is not available
# one the current system. # one the current system.
check_parallel_is_here || exit 1 ; check_parallel_is_here || exit 1 ;

View File

@ -83,8 +83,8 @@
# "$@" will be replaced by the parameters of this script itself, # "$@" will be replaced by the parameters of this script itself,
# the one you are reading now. It's usefull if you want to # the one you are reading now. It's useful if you want to
# add temporarly a parameter for all runs without editing any file. # add temporarily a parameter for all runs without editing any file.
# For example, # For example,
# sync_parallel_unix.sh --justlogin # sync_parallel_unix.sh --justlogin
# will run all imapsync with the --justlogin parameter added. # will run all imapsync with the --justlogin parameter added.
@ -102,7 +102,7 @@ check_parallel_is_here() {
parallel --version > /dev/null || { echo "parallel command is not installed. Install it first."; return 1; } parallel --version > /dev/null || { echo "parallel command is not installed. Install it first."; return 1; }
} }
# First, there is no need to go further if the parallel command is not avalable # First, there is no need to go further if the parallel command is not available
# one the current system. # one the current system.
check_parallel_is_here || exit 1 ; check_parallel_is_here || exit 1 ;