viniciusferrao
Contributor
- Joined
- Mar 30, 2013
- Messages
- 192
When you are in INSERT mode and want to navigate on the textfile without hitting ESC.When exactly do these characters show up? They don't if I use the stock vi while logged in via SSH. If this happens to you while you are using the web UI shell - don't. It's broken. Use SSH.
That is what happens:
Code:
# Filesystem path to repositories REPO_PATH="/mnt/repos0/repos" # Min and max random delay time in seconds MIN_DELAY=30 MAX_DELAY=600 B <=== CURSOR STAYS HERE; IT WILL ADD THE CHARACTERS AND PUSH DOWN. C A D B C A D B A # Define common rsync options RSYNC_OPTIONS="-aSH --delete --delete-delay --delay-updates" syncRepositories() { # AlmaLinux rsync ${RSYNC_OPTIONS} -f 'R .~tmp~' rsync://rsync.repo.almalinux.org/almalinux/ ${REPO_PATH}/almalinux/ &