Notes
Some useful tricks
Remove trailing symbols
Copying text across platforms (e.g., Linux and Windows) may sometime results in trailing symbols. To resolve the issue:
sed -e "s/^M//" filename > newfilename
Last updated
Was this helpful?