Merge pull request #216 from MarNicGit/patch-powershell-typo

Fix typos and small grammar change
This commit is contained in:
MS_Y 2021-09-11 10:25:45 +00:00 committed by GitHub
commit 6fc93f59ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View file

@ -138,8 +138,8 @@ function Copy-Auto() {
}
if ( Test-Path -Path "${target}" ) {
Write-Host "${target} alreay exist."
Write-Host "Now Backup.."
Write-Host "${target} already exists."
Write-Host "Now making a backup.."
Copy-Auto "${target}" "${target}.bak"
Remove-Item "${target}" -Recurse -Force
Write-Host ""
@ -162,8 +162,8 @@ function Move-Auto() {
}
if ( Test-Path -Path "${target}" ) {
Write-Host "${target} alreay exist."
Write-Host "Now Backup.."
Write-Host "${target} already exists."
Write-Host "Now making a backup.."
Move-Auto "${target}" "${target}.bak"
Write-Host ""
}

View file

@ -123,8 +123,8 @@ autocp() {
fi
if [ -e "${target}" ]; then
echo "${target} alreay exist."
echo "Now Backup.."
echo "${target} already exists."
echo "Now making a backup.."
autocp "${target}" "${target}.bak"
rm -rf "${target}"
echo ""
@ -143,8 +143,8 @@ automv() {
fi
if [ -e "${target}" ]; then
echo "${target} alreay exist."
echo "Now Backup.."
echo "${target} already exists."
echo "Now making a backup.."
automv "${target}" "${target}.bak"
echo ""
fi