Hi Mikrotik fans! Below is a simple dos2unix script where it removes the \r (carriage return) of a text file. Useful for files or variable content in which you wish to remove the \r (CR) :local content $1 :local cleanedContent "" :local start 0 :local end 1 # Loop through each character an...