{"id":27814,"date":"2025-08-19T09:10:22","date_gmt":"2025-08-19T06:10:22","guid":{"rendered":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/"},"modified":"2025-09-01T18:10:44","modified_gmt":"2025-09-01T15:10:44","slug":"sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz","status":"publish","type":"post","link":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/","title":{"rendered":"sed ile t\u00fcm ters slash&#8217;leri d\u00fcz slash&#8217;lerle nas\u0131l de\u011fi\u015ftirirsiniz"},"content":{"rendered":"<p># sed ile Ters Slash&#8217;leri Normal Slash&#8217;lerle De\u011fi\u015ftirme: Tam Bir K\u0131lavuz<\/p>\n<p>Dosya sistemlerindeki yollar\u0131n i\u015flenmesi, veri temizli\u011fi veya metin d\u00fczenleme i\u015flemlerinde s\u0131kl\u0131kla ters slash (<code class=\"language-\">\\<\/code>) karakterlerinin normal slash (<code class=\"language-\">\/<\/code>) karakterleriyle de\u011fi\u015ftirilmesi gere\u011fiyle kar\u015f\u0131la\u015f\u0131r\u0131z.  Bu i\u015flem i\u00e7in g\u00fc\u00e7l\u00fc bir komut sat\u0131r\u0131 arac\u0131 olan <code class=\"language-\">sed<\/code> (stream editor) kullanabiliriz. Bu makale, <code class=\"language-\">sed<\/code> kullanarak ters slash&#8217;leri normal slash&#8217;lerle de\u011fi\u015ftirmenin ad\u0131m ad\u0131m nas\u0131l yap\u0131laca\u011f\u0131n\u0131, ger\u00e7ek d\u00fcnya \u00f6rneklerini ve performans optimizasyonunu ele almaktad\u0131r.<\/p>\n<p><strong>\u00d6\u011frenme Yol Haritas\u0131:<\/strong><\/p>\n<p>* <strong>Yeni Ba\u015flayan:<\/strong>  Temel <code class=\"language-\">sed<\/code> komutlar\u0131 ve basit bir \u00f6rnek.<br \/>\n* <strong>Orta:<\/strong> Ger\u00e7ek d\u00fcnya senaryolar\u0131 ve optimizasyon ipu\u00e7lar\u0131.<br \/>\n* <strong>\u0130leri D\u00fczey:<\/strong> Performans analizi, karma\u015f\u0131k durumlar ve hata y\u00f6netimi.<\/p>\n<p><strong>Sed ile Ters Slash De\u011fi\u015ftirme: Temel Kavramlar<\/strong><\/p>\n<p><code class=\"language-\">sed<\/code>, ak\u0131\u015f d\u00fczenleyici anlam\u0131na gelir ve metin dosyalar\u0131n\u0131 sat\u0131r sat\u0131r i\u015fleyerek d\u00fczenlemeler yapmam\u0131z\u0131 sa\u011flar.  Temel s\u00f6zdizimi \u015fu \u015fekildedir: <code class=\"language-\">sed 'komut' dosya_adi<\/code>.  Komutlar, d\u00fczenleme i\u015flemlerini tan\u0131mlar. Ters slash&#8217;leri de\u011fi\u015ftirmek i\u00e7in <code class=\"language-\">s<\/code> (substitute &#8211; de\u011fi\u015ftirme) komutunu kullan\u0131r\u0131z.  <code class=\"language-\">s\/arama\/de\u011fi\u015ftirme\/g<\/code>  \u015feklindedir.  <code class=\"language-\">\/arama\/<\/code> k\u0131sm\u0131 de\u011fi\u015ftirilecek karakteri, <code class=\"language-\">\/de\u011fi\u015ftirme\/<\/code> k\u0131sm\u0131 yerine yaz\u0131lacak karakteri ve <code class=\"language-\">g<\/code> bayra\u011f\u0131 t\u00fcm e\u015fle\u015fmeleri de\u011fi\u015ftirmemizi sa\u011flar.  Ters slash&#8217;ler \u00f6zel karakterler oldu\u011fu i\u00e7in, <code class=\"language-\">\\<\/code> ile ka\u00e7\u0131\u015f karakteri kullanarak belirtmeliyiz.<\/p>\n<p><strong>Yeni Ba\u015flayan:<\/strong><\/p>\n<p><strong>Ad\u0131m ad\u0131m a\u00e7\u0131klama:<\/strong><\/p>\n<p>1. <strong>Bir \u00f6rnek dosya olu\u015fturun:<\/strong> \u00d6rne\u011fin, <code class=\"language-\">\u00f6rnek.txt<\/code> ad\u0131nda bir dosya olu\u015fturup i\u00e7ine \u015fu metni yaz\u0131n:  &#8220;C:\\\\Users\\\\Kullanici\\\\Documents\\\\dosya.txt&#8221;<\/p>\n<p>2. <strong><code class=\"language-\">sed<\/code> komutunu \u00e7al\u0131\u015ft\u0131r\u0131n:<\/strong>  A\u015fa\u011f\u0131daki komutu terminalde \u00e7al\u0131\u015ft\u0131r\u0131n:<\/p>\n<pre class=\"language-bash\"><code>sed 's\/\\\\\/\\\/\/g' \u00f6rnek.txt<\/code><\/pre>\n<p>Bu komut, <code class=\"language-\">\u00f6rnek.txt<\/code> dosyas\u0131ndaki t\u00fcm ters slash&#8217;leri normal slash&#8217;lerle de\u011fi\u015ftirir ve sonucu ekrana yazd\u0131r\u0131r. Dosyay\u0131 de\u011fi\u015ftirmek i\u00e7in <code class=\"language-\">-i<\/code> se\u00e7ene\u011fini kullan\u0131n:<\/p>\n<pre class=\"language-bash\"><code>sed -i 's\/\\\\\/\\\/\/g' \u00f6rnek.txt<\/code><\/pre>\n<p><strong>Basit kod \u00f6rne\u011fi:<\/strong><\/p>\n<p>Yukar\u0131daki \u00f6rnek, en basit haliyle <code class=\"language-\">sed<\/code> kullanarak ters slash&#8217;lerin nas\u0131l de\u011fi\u015ftirilece\u011fini g\u00f6stermektedir.  <code class=\"language-\">-i<\/code> se\u00e7ene\u011fi olmadan \u00e7al\u0131\u015ft\u0131r\u0131ld\u0131\u011f\u0131nda, orijinal dosya de\u011fi\u015fmeden kal\u0131r ve \u00e7\u0131kt\u0131 ekranda g\u00f6sterilir.<\/p>\n<p><strong>Ger\u00e7ek D\u00fcnya Senaryolar\u0131:  Yollar\u0131n D\u00fczenlenmesi<\/strong><\/p>\n<p><strong>Orta Seviye:<\/strong><\/p>\n<p><strong>Ger\u00e7ek hayat \u00f6rne\u011fi:<\/strong><\/p>\n<p>Bir Python beti\u011finde, kullan\u0131c\u0131dan dosya yolu al\u0131p bu yolu i\u015flemeniz gereksin. Kullan\u0131c\u0131 Windows sisteminde \u00e7al\u0131\u015f\u0131yorsa, yol ters slash&#8217;ler i\u00e7erecektir.  Bu slash&#8217;leri normal slash&#8217;lere \u00e7evirmeniz, beti\u011finizin farkl\u0131 i\u015fletim sistemlerinde sorunsuz \u00e7al\u0131\u015fmas\u0131n\u0131 sa\u011flar.<\/p>\n<pre class=\"language-python\"><code>import os\ndosya_yolu = input(&quot;Dosya yolunu girin: &quot;)\nd\u00fczeltilmi\u015f_yol = dosya_yolu.replace(&quot;\\\\&quot;, &quot;\/&quot;)\nprint(f&quot;D\u00fczeltilmi\u015f yol: {d\u00fczeltilmi\u015f_yol}&quot;)\nos.path.exists(d\u00fczeltilmi\u015f_yol) #Dosyan\u0131n varl\u0131\u011f\u0131n\u0131 kontrol et<\/code><\/pre>\n<p>Bu kod,  <code class=\"language-\">replace()<\/code> fonksiyonunu kullanarak Python&#8217;da slash&#8217;leri de\u011fi\u015ftirir.  Ancak, b\u00fcy\u00fck dosyalar i\u00e7in <code class=\"language-\">sed<\/code> daha h\u0131zl\u0131 olabilir.  Ayn\u0131 i\u015flemi <code class=\"language-\">sed<\/code> ile yapmak i\u00e7in:<\/p>\n<pre class=\"language-bash\"><code>echo &quot;C:\\\\Users\\\\Kullanici\\\\Documents\\\\dosya.txt&quot; | sed 's\/\\\\\/\\\/\/g'<\/code><\/pre>\n<p>Bu, <code class=\"language-\">echo<\/code> komutu ile olu\u015fturulan metni <code class=\"language-\">sed<\/code>&#8216;e pipe ederek i\u015flemektedir.<\/p>\n<p><strong>Optimizasyon ipu\u00e7lar\u0131:<\/strong><\/p>\n<p>* B\u00fcy\u00fck dosyalar i\u00e7in <code class=\"language-\">sed -i<\/code> yerine <code class=\"language-\">sed 'komut' dosya_adi > yeni_dosya_adi<\/code> kullanarak yeni bir dosya olu\u015fturmak daha h\u0131zl\u0131 olabilir.<br \/>\n* Gereksiz i\u015flemden ka\u00e7\u0131nmak i\u00e7in sadece gerekli olan k\u0131s\u0131mlar\u0131 de\u011fi\u015ftirmek daha verimli olur.<\/p>\n<p><strong>Performans Analizi ve Karma\u015f\u0131k Durumlar: \u0130leri D\u00fczey<\/strong><\/p>\n<p><strong>\u0130leri D\u00fczey:<\/strong><\/p>\n<p><strong>Performans analizi:<\/strong><\/p>\n<p>B\u00fcy\u00fck dosyalarda <code class=\"language-\">sed<\/code>&#8216;in performans\u0131n\u0131 \u00f6l\u00e7mek i\u00e7in <code class=\"language-\">time<\/code> komutunu kullanabiliriz. \u00d6rne\u011fin:<\/p>\n<pre class=\"language-bash\"><code>time sed -i 's\/\\\\\/\\\/\/g' b\u00fcy\u00fck_dosya.txt<\/code><\/pre>\n<p>Bu komut, <code class=\"language-\">sed<\/code> komutunun \u00e7al\u0131\u015fmas\u0131n\u0131n ne kadar s\u00fcrd\u00fc\u011f\u00fcn\u00fc g\u00f6sterir.  Performans\u0131 art\u0131rmak i\u00e7in <code class=\"language-\">-i<\/code> yerine yeni dosya olu\u015fturmay\u0131 deneyebilirsiniz. Ayr\u0131ca, <code class=\"language-\">sed<\/code>&#8216;in <code class=\"language-\">-n<\/code> (suppressing automatic printing) ve <code class=\"language-\">p<\/code> (print) se\u00e7eneklerini kullanarak sadece de\u011fi\u015ftirilen sat\u0131rlar\u0131 yazd\u0131rarak performans\u0131 art\u0131rabilirsiniz.<\/p>\n<p><strong>Edge caseler:<\/strong><\/p>\n<p>Baz\u0131 durumlarda, ters slash&#8217;ler ka\u00e7\u0131\u015f karakteri olarak da kullan\u0131labilir.  \u00d6rne\u011fin, bir regular expression&#8217;da <code class=\"language-\">\\<\/code> \u00f6zel bir anlama sahiptir.  Bu gibi durumlarda, daha karma\u015f\u0131k <code class=\"language-\">sed<\/code> komutlar\u0131 kullanman\u0131z gerekebilir.  \u00d6rne\u011fin, sadece dosya ad\u0131ndaki ters slash&#8217;leri de\u011fi\u015ftirmek i\u00e7in daha spesifik bir regular expression kullanmal\u0131s\u0131n\u0131z.  Bu durumlar i\u00e7in <code class=\"language-\">sed<\/code>&#8216;in g\u00fc\u00e7l\u00fc regular expression yeteneklerinden faydalanabilirsiniz.  \u00d6rne\u011fin,  <code class=\"language-\">\/\\\\\/<\/code> yerine daha spesifik bir regex kullanarak sadece dosya ad\u0131ndaki ters slash&#8217;leri hedefleyebilirsiniz.  Bu, gereksiz de\u011fi\u015fiklikleri \u00f6nleyerek performans\u0131 ve do\u011frulu\u011fu art\u0131r\u0131r.<\/p>\n<p><strong>Uygulamal\u0131 K\u0131lavuz:  Ad\u0131m Ad\u0131m \u00d6rnekler<\/strong><\/p>\n<p>Bu b\u00f6l\u00fcmde, farkl\u0131 senaryolar i\u00e7in ad\u0131m ad\u0131m <code class=\"language-\">sed<\/code> komutlar\u0131n\u0131 ve a\u00e7\u0131klamalar\u0131n\u0131 sunaca\u011f\u0131z.<\/p>\n<p><strong>\u00d6rnek 1:  Tek bir ters slash de\u011fi\u015ftirme:<\/strong><\/p>\n<p><code class=\"language-\">sed 's\/\\\\\/\\\/\/1'<\/code> komutu, her sat\u0131rda sadece ilk bulunan ters slash&#8217;i de\u011fi\u015ftirir.<\/p>\n<p><strong>\u00d6rnek 2:  T\u00fcm ters slash&#8217;leri de\u011fi\u015ftirme (tekrarlayan):<\/strong><\/p>\n<p><code class=\"language-\">sed 's\/\\\\\/\\\/\/g'<\/code> komutu, her sat\u0131rda t\u00fcm ters slash&#8217;leri de\u011fi\u015ftirir.  <code class=\"language-\">g<\/code> bayra\u011f\u0131, t\u00fcm e\u015fle\u015fmeleri de\u011fi\u015ftirir.<\/p>\n<p><strong>\u00d6rnek 3:  Belirli bir dizindeki t\u00fcm dosyalarda de\u011fi\u015ftirme:<\/strong><\/p>\n<pre class=\"language-bash\"><code>find . -type f -exec sed -i 's\/\\\\\/\\\/\/g' {} \\;<\/code><\/pre>\n<p>Bu komut, ge\u00e7erli dizin (<code class=\"language-\">.\/<\/code>) alt\u0131ndaki t\u00fcm dosyalarda (<code class=\"language-\">-type f<\/code>) ters slash&#8217;leri de\u011fi\u015ftirir.  <code class=\"language-\">{}<\/code> yerine dosya ad\u0131 yerle\u015ftirilir ve <code class=\"language-\">\\;<\/code> komutun sonunu belirtir.<\/p>\n<p><strong>\u00d6rnek 4:  Yedek dosya olu\u015fturma:<\/strong><\/p>\n<p><code class=\"language-\">sed 's\/\\\\\/\\\/\/g' dosya.txt > yeni_dosya.txt<\/code> komutu, orijinal dosyay\u0131 de\u011fi\u015ftirmeden yeni bir dosya olu\u015fturur.<\/p>\n<p><strong>Sonu\u00e7<\/strong><\/p>\n<p><code class=\"language-\">sed<\/code>, ters slash&#8217;leri normal slash&#8217;lerle de\u011fi\u015ftirmek i\u00e7in g\u00fc\u00e7l\u00fc ve verimli bir ara\u00e7t\u0131r.  Bu k\u0131lavuzda, temel kullan\u0131mdan ileri d\u00fczey tekniklere kadar \u00e7e\u015fitli \u00f6rnekler ve optimizasyon ipu\u00e7lar\u0131 verildi.  Karma\u015f\u0131k durumlar i\u00e7in, <code class=\"language-\">sed<\/code>&#8216;in g\u00fc\u00e7l\u00fc regular expression yeteneklerinden yararlanarak daha spesifik ve verimli \u00e7\u00f6z\u00fcmler \u00fcretebilirsiniz.  Farkl\u0131 i\u015fletim sistemlerindeki dosya yollar\u0131n\u0131 i\u015flemek veya metin verilerini d\u00fczenlemek i\u00e7in <code class=\"language-\">sed<\/code>&#8216;i rahatl\u0131kla kullanabilirsiniz. Daha fazla ipucu ve bilgi i\u00e7in [Fatih Soysal&#8217;\u0131n bloguna](https:\/\/fatihsoysal.com) g\u00f6z atabilirsiniz.<\/p>\n<p><strong>S\u0131k\u00e7a Sorulan Sorular:<\/strong><\/p>\n<p>1. <strong><code class=\"language-\">sed<\/code> komutlar\u0131 neden tek t\u0131rnak i\u00e7inde yaz\u0131lmal\u0131?<\/strong>  Tek t\u0131rnaklar, kabuk taraf\u0131ndan yorumlanmas\u0131n\u0131 \u00f6nleyerek komutun do\u011fru \u00e7al\u0131\u015fmas\u0131n\u0131 sa\u011flar.<\/p>\n<p>2. <strong><code class=\"language-\">sed -i<\/code> komutu dosyay\u0131 nas\u0131l de\u011fi\u015ftirir?<\/strong>  <code class=\"language-\">-i<\/code> se\u00e7ene\u011fi, orijinal dosyay\u0131 do\u011frudan de\u011fi\u015ftirir.  Bu nedenle, i\u015flemden \u00f6nce dosyan\u0131n yede\u011fini alman\u0131z \u00f6nerilir.<\/p>\n<p>3. <strong>B\u00fcy\u00fck dosyalarda performans nas\u0131l iyile\u015ftirilebilir?<\/strong>  Yeni bir dosya olu\u015fturmak, <code class=\"language-\">-i<\/code> se\u00e7ene\u011finden daha h\u0131zl\u0131 olabilir.  Ayr\u0131ca, <code class=\"language-\">-n<\/code> ve <code class=\"language-\">p<\/code> se\u00e7enekleri kullan\u0131larak sadece de\u011fi\u015ftirilen sat\u0131rlar yazd\u0131r\u0131labilir.<\/p>\n<p>4. <strong><code class=\"language-\">sed<\/code>&#8216;in regular expression yeteneklerinden nas\u0131l yararlanabilirim?<\/strong>  <code class=\"language-\">sed<\/code>&#8216;in <code class=\"language-\">s<\/code> komutunda daha karma\u015f\u0131k regular expression&#8217;lar kullanarak daha spesifik ve verimli de\u011fi\u015fiklikler yapabilirsiniz.<\/p>\n<p>5. <strong>Hata y\u00f6netimi nas\u0131l yap\u0131l\u0131r?<\/strong>  <code class=\"language-\">sed<\/code> komutlar\u0131n\u0131n \u00e7\u0131k\u0131\u015f\u0131n\u0131 kontrol ederek ve hata mesajlar\u0131n\u0131 inceleyerek hata y\u00f6netimi yap\u0131labilir.<\/p>\n<p>Yazar: Fatih Soysal<\/p>\n","protected":false},"excerpt":{"rendered":"# sed ile Ters Slash&#8217;leri Normal Slash&#8217;lerle De\u011fi\u015ftirme: Tam Bir K\u0131lavuz Dosya sistemlerindeki yollar\u0131n i\u015flenmesi, veri temizli\u011fi veya&hellip;","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"csco_page_header_type":"","csco_page_load_nextpost":"","csco_page_subscribe_form":"","csco_page_contact_form":"","footnotes":""},"categories":[1374],"tags":[],"class_list":{"0":"post-27814","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-sed","7":"cs-entry","8":"cs-video-wrap"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.5 (Yoast SEO v25.3.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>sed ile t\u00fcm ters slash&#039;leri d\u00fcz slash&#039;lerle nas\u0131l de\u011fi\u015ftirirsiniz<\/title>\n<meta name=\"description\" content=\"Hi\u00e7bir etiketi bulunamad\u0131.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"sed ile t\u00fcm ters slash&#039;leri d\u00fcz slash&#039;lerle nas\u0131l de\u011fi\u015ftirirsiniz\" \/>\n<meta property=\"og:description\" content=\"Hi\u00e7bir etiketi bulunamad\u0131.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/\" \/>\n<meta property=\"og:site_name\" content=\"Kodlar\u0131n Gizemli D\u00fcnyas\u0131\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-19T06:10:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-01T15:10:44+00:00\" \/>\n<meta name=\"author\" content=\"Fatih Soysal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Yazan:\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fatih Soysal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tahmini okuma s\u00fcresi\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 dakika\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/\"},\"author\":{\"name\":\"Fatih Soysal\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1\"},\"headline\":\"sed ile t\u00fcm ters slash&#8217;leri d\u00fcz slash&#8217;lerle nas\u0131l de\u011fi\u015ftirirsiniz\",\"datePublished\":\"2025-08-19T06:10:22+00:00\",\"dateModified\":\"2025-09-01T15:10:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/\"},\"wordCount\":1031,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1\"},\"articleSection\":[\"Sed\"],\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/#respond\"]}],\"copyrightYear\":\"2025\",\"copyrightHolder\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/\",\"url\":\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/\",\"name\":\"sed ile t\u00fcm ters slash'leri d\u00fcz slash'lerle nas\u0131l de\u011fi\u015ftirirsiniz\",\"isPartOf\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#website\"},\"datePublished\":\"2025-08-19T06:10:22+00:00\",\"dateModified\":\"2025-09-01T15:10:44+00:00\",\"description\":\"Hi\u00e7bir etiketi bulunamad\u0131.\",\"breadcrumb\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\/\/fatihsoysal.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"sed ile t\u00fcm ters slash&#8217;leri d\u00fcz slash&#8217;lerle nas\u0131l de\u011fi\u015ftirirsiniz\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#website\",\"url\":\"https:\/\/fatihsoysal.com\/blog\/\",\"name\":\"Fatihsoysal.com\",\"description\":\"Blog - Yaz\u0131l\u0131m D\u00fcnyas\u0131 Tecr\u00fcbelerim\",\"publisher\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/fatihsoysal.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"tr\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1\",\"name\":\"Fatih Soysal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"tr\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/fatihsoysal.com\/blog\/wp-content\/uploads\/2024\/04\/cropped-replicate-prediction-3kgg1hgjn5rgp0cf0p5tr0jw7w-1.png\",\"contentUrl\":\"https:\/\/fatihsoysal.com\/blog\/wp-content\/uploads\/2024\/04\/cropped-replicate-prediction-3kgg1hgjn5rgp0cf0p5tr0jw7w-1.png\",\"width\":512,\"height\":512,\"caption\":\"Fatih Soysal\"},\"logo\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/image\/\"},\"description\":\"Kullan\u0131m ve kodlama m\u00fckemmeliyetini odak alan uygulamalar olu\u015fturma deneyimine sahip, profesyonel olarak 15+ y\u0131l \u00fczeri deneyime sahip bir yaz\u0131l\u0131m m\u00fchendisi.\",\"url\":\"https:\/\/fatihsoysal.com\/blog\/author\/fatihsoysal\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"sed ile t\u00fcm ters slash'leri d\u00fcz slash'lerle nas\u0131l de\u011fi\u015ftirirsiniz","description":"Hi\u00e7bir etiketi bulunamad\u0131.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/","og_locale":"tr_TR","og_type":"article","og_title":"sed ile t\u00fcm ters slash'leri d\u00fcz slash'lerle nas\u0131l de\u011fi\u015ftirirsiniz","og_description":"Hi\u00e7bir etiketi bulunamad\u0131.","og_url":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/","og_site_name":"Kodlar\u0131n Gizemli D\u00fcnyas\u0131","article_published_time":"2025-08-19T06:10:22+00:00","article_modified_time":"2025-09-01T15:10:44+00:00","author":"Fatih Soysal","twitter_card":"summary_large_image","twitter_misc":{"Yazan:":"Fatih Soysal","Tahmini okuma s\u00fcresi":"6 dakika"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/#article","isPartOf":{"@id":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/"},"author":{"name":"Fatih Soysal","@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1"},"headline":"sed ile t\u00fcm ters slash&#8217;leri d\u00fcz slash&#8217;lerle nas\u0131l de\u011fi\u015ftirirsiniz","datePublished":"2025-08-19T06:10:22+00:00","dateModified":"2025-09-01T15:10:44+00:00","mainEntityOfPage":{"@id":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/"},"wordCount":1031,"commentCount":0,"publisher":{"@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1"},"articleSection":["Sed"],"inLanguage":"tr","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/#respond"]}],"copyrightYear":"2025","copyrightHolder":{"@id":"https:\/\/fatihsoysal.com\/blog\/#organization"}},{"@type":"WebPage","@id":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/","url":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/","name":"sed ile t\u00fcm ters slash'leri d\u00fcz slash'lerle nas\u0131l de\u011fi\u015ftirirsiniz","isPartOf":{"@id":"https:\/\/fatihsoysal.com\/blog\/#website"},"datePublished":"2025-08-19T06:10:22+00:00","dateModified":"2025-09-01T15:10:44+00:00","description":"Hi\u00e7bir etiketi bulunamad\u0131.","breadcrumb":{"@id":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/fatihsoysal.com\/blog\/sed-ile-tum-ters-slashleri-duz-slashlerle-nasil-degistirirsiniz\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/fatihsoysal.com\/blog\/"},{"@type":"ListItem","position":2,"name":"sed ile t\u00fcm ters slash&#8217;leri d\u00fcz slash&#8217;lerle nas\u0131l de\u011fi\u015ftirirsiniz"}]},{"@type":"WebSite","@id":"https:\/\/fatihsoysal.com\/blog\/#website","url":"https:\/\/fatihsoysal.com\/blog\/","name":"Fatihsoysal.com","description":"Blog - Yaz\u0131l\u0131m D\u00fcnyas\u0131 Tecr\u00fcbelerim","publisher":{"@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fatihsoysal.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"tr"},{"@type":["Person","Organization"],"@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1","name":"Fatih Soysal","image":{"@type":"ImageObject","inLanguage":"tr","@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/fatihsoysal.com\/blog\/wp-content\/uploads\/2024\/04\/cropped-replicate-prediction-3kgg1hgjn5rgp0cf0p5tr0jw7w-1.png","contentUrl":"https:\/\/fatihsoysal.com\/blog\/wp-content\/uploads\/2024\/04\/cropped-replicate-prediction-3kgg1hgjn5rgp0cf0p5tr0jw7w-1.png","width":512,"height":512,"caption":"Fatih Soysal"},"logo":{"@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/image\/"},"description":"Kullan\u0131m ve kodlama m\u00fckemmeliyetini odak alan uygulamalar olu\u015fturma deneyimine sahip, profesyonel olarak 15+ y\u0131l \u00fczeri deneyime sahip bir yaz\u0131l\u0131m m\u00fchendisi.","url":"https:\/\/fatihsoysal.com\/blog\/author\/fatihsoysal\/"}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/posts\/27814","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/comments?post=27814"}],"version-history":[{"count":1,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/posts\/27814\/revisions"}],"predecessor-version":[{"id":28625,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/posts\/27814\/revisions\/28625"}],"wp:attachment":[{"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/media?parent=27814"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/categories?post=27814"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/tags?post=27814"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}