“cara menghapus spasi di ujung linux garis” Kode Jawaban

Hapus ruang di ujung setiap file baris

Use either one of both next commands with sed 's/to_replace/replace/':
sed 's/ *$//' file
sed 's/[[:blank:]]*$//' file
Armandres

cara menghapus spasi di ujung linux garis

//Use this
sed -e '/[[:space:]]\+$/s///' fileName.txt > FileName.temp 
//The temp file will allow you to check for spaces
Panicky Platypus

Jawaban yang mirip dengan “cara menghapus spasi di ujung linux garis”

Pertanyaan yang mirip dengan “cara menghapus spasi di ujung linux garis”

Lebih banyak jawaban terkait untuk “cara menghapus spasi di ujung linux garis” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya