Emre Çamalan'ın Kişisel Güncesi

Ben, sen sen olduğun için, benim!

Sed: Cümledeki bir kelimeyi değiştirmek

Örnek cümlemiz:

Microsoft sells you Windows, but Linux gives you the whole house. 

Cümlesindeki Linux’u \s-2Linuxs0\ olarak değiştirelim.

Maksadımız komut satırında SED kullanımına örnek yapmak.

~$ echo "Microsoft sells you Windows, but Linux gives you the whole house." | sed 's/Linux/\\s-2&\\s0/g'
~$ Microsoft sells you Windows, but \s-2Linux\s0 gives you the whole house.

Linux yerine UNIX & Linux Yazdıralım:

~$ echo "Microsoft sells you Windows, but Linux gives you the whole house." | sed 's/Linux/UNIX \& &/g'
~$ Microsoft sells you Windows, but UNIX & Linux gives you the whole house.

, ,

Bir yanıt yazın

E-posta adresiniz yayınlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

*

Bu site, istenmeyenleri azaltmak için Akismet kullanıyor. Yorum verilerinizin nasıl işlendiği hakkında daha fazla bilgi edinin.