Types/Posh.Host.Cursor/Back.ps1

<#
.SYNOPSIS
    Moves the cursor back
.DESCRIPTION
    Moves the cursor N (default 1) cells back.
    If the cursor is already at the edge of the screen, this has no effect.
.NOTES
    This method returns an escape sequence (it should be invisible).
#>

param(
    # How far the cursor should move.
    [Alias('N')]
    [ValidateRange(1,1024)]
    [int]$Distance = 1
)

"`e[${Distance}D"