Changeset 3665
- Timestamp:
- Feb 28, 2025, 11:36:11 AM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/makelmdz_fcm
r3598 r3665 609 609 610 610 # Function to process problematic characters 611 # Delete invalid character due to encoding format 611 # Convert input to UTF-8 and ignore invalid characters 612 # Remove carriage return characters to prevent formatting issues 612 613 # Escape backslashes and single quotes 613 614 clean_output() { 614 615 iconv -f "$(locale charmap)" -t UTF-8//IGNORE \ 616 | tr -d '\r' \ 615 617 | sed 's/\\/\\\\/g; s/'\''/'\'\''/g' 616 618 }
Note: See TracChangeset
for help on using the changeset viewer.