{"id":26422,"date":"2025-07-25T00:10:24","date_gmt":"2025-07-24T21:10:24","guid":{"rendered":"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/"},"modified":"2025-07-25T00:10:24","modified_gmt":"2025-07-24T21:10:24","slug":"bashte-tarih-ve-zamani-bicimlendirme-orneklerle","status":"publish","type":"post","link":"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/","title":{"rendered":"Bash&#8217;te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)"},"content":{"rendered":"<p># Bash&#8217;te Tarih ve Zaman Formatlama: Tam Bir Rehber<\/p>\n<p>Bash komut sat\u0131r\u0131nda tarih ve zaman\u0131 istedi\u011finiz gibi formatlamak, g\u00fcnl\u00fck i\u015flerinizi otomatikle\u015ftirmek ve raporlar olu\u015fturmak i\u00e7in \u00e7ok \u00f6nemlidir.  Bu makalede, Bash&#8217;te tarih ve zaman formatlaman\u0131n temellerinden ileri d\u00fczey tekniklerine kadar her \u015feyi, ad\u0131m ad\u0131m ve ger\u00e7ek d\u00fcnya \u00f6rnekleriyle \u00f6\u011freneceksiniz.  Ba\u015flang\u0131\u00e7 seviyesinden ileri seviyeye kadar olan yolculu\u011funuzda size rehberlik edece\u011fiz.  Uygulamal\u0131 \u00f6rnekler ve performans optimizasyonu ipu\u00e7lar\u0131 ile Bash&#8217;teki tarih ve zaman manip\u00fclasyonuna tam hakim olacaks\u0131n\u0131z.<\/p>\n<p><strong>Tarih ve Zaman Formatlamaya Giri\u015f: Neden \u00d6nemli?<\/strong><\/p>\n<p>Log dosyalar\u0131n\u0131z\u0131 analiz etmek, belirli bir tarih aral\u0131\u011f\u0131ndaki olaylar\u0131 filtrelemek veya otomatik raporlar olu\u015fturmak istiyorsunuz diyelim.  Bu i\u015flemler i\u00e7in tarih ve zaman verilerini do\u011fru \u015fekilde formatlamak ve i\u015flemek zorundas\u0131n\u0131z.  Bash, bu i\u015flemleri ger\u00e7ekle\u015ftirmek i\u00e7in g\u00fc\u00e7l\u00fc ara\u00e7lar sunar, ancak do\u011fru formatlama tekniklerini bilmek ba\u015far\u0131n\u0131n anahtar\u0131d\u0131r. Bu rehber, size bu teknikleri ad\u0131m ad\u0131m \u00f6\u011freterek, zaman\u0131n\u0131z\u0131 ve enerjinizi verimli kullanman\u0131za yard\u0131mc\u0131 olacakt\u0131r.<\/p>\n<p><strong>Temel Kavramlar: <code class=\"language-\">date<\/code> Komutu ve Format Belirleyicileri<\/strong><\/p>\n<p>Bash&#8217;te tarih ve zaman i\u015flemlerinin kalbi <code class=\"language-\">date<\/code> komutudur.  <code class=\"language-\">date<\/code> komutu, sistemin saatini ve tarihini \u00e7e\u015fitli formatlarda g\u00f6sterir ve manip\u00fcle etmenizi sa\u011flar.  Ancak, bu komutu etkili kullanabilmek i\u00e7in format belirleyicilerini anlaman\u0131z gerekir.  Format belirleyicileri, <code class=\"language-\">date<\/code> komutuna hangi bilgileri ve hangi formatta g\u00f6stermesini s\u00f6yleyen \u00f6zel karakterlerdir.<\/p>\n<p>\u00d6rne\u011fin, <code class=\"language-\">%Y<\/code> d\u00f6rt basamakl\u0131 y\u0131l\u0131, <code class=\"language-\">%m<\/code> iki basamakl\u0131 ay\u0131 (01-12), <code class=\"language-\">%d<\/code> iki basamakl\u0131 g\u00fcn\u00fc (01-31), <code class=\"language-\">%H<\/code> 24 saatlik formatta saati (00-23), <code class=\"language-\">%M<\/code> dakikay\u0131 (00-59) ve <code class=\"language-\">%S<\/code> saniyeyi (00-59) temsil eder.  Daha bir\u00e7ok format belirleyicisi mevcuttur ve bunlar\u0131n listesini <code class=\"language-\">man date<\/code> komutu ile g\u00f6r\u00fcnt\u00fcleyebilirsiniz.<\/p>\n<p><strong>Bash&#8217;te Tarih ve Zaman\u0131 Formatlama: Ad\u0131m Ad\u0131m Uygulamal\u0131 K\u0131lavuz (Yeni Ba\u015flayanlar)<\/strong><\/p>\n<p>\u0130lk olarak, basit bir tarih ve zaman formatlama \u00f6rne\u011fiyle ba\u015flayal\u0131m.  A\u015fa\u011f\u0131daki komut, \u015fu anki tarihi ve zaman\u0131 &#8220;YYYY-AA-GG HH:MM:SS&#8221; format\u0131nda ekrana yazd\u0131r\u0131r:<\/p>\n<pre class=\"language-bash\"><code>date +&quot;%Y-%m-%d %H:%M:%S&quot;<\/code><\/pre>\n<p>Bu komutta <code class=\"language-\">+<\/code> i\u015fareti, <code class=\"language-\">date<\/code> komutuna format dizesi verdi\u011fimizi g\u00f6sterir.  <code class=\"language-\">%Y<\/code>, <code class=\"language-\">%m<\/code>, <code class=\"language-\">%d<\/code>, <code class=\"language-\">%H<\/code>, <code class=\"language-\">%M<\/code> ve <code class=\"language-\">%S<\/code> ise s\u0131ras\u0131yla y\u0131l, ay, g\u00fcn, saat, dakika ve saniye format belirleyicileridir.<\/p>\n<p>\u015eimdi, bir hafta \u00f6nceki tarihi g\u00f6r\u00fcnt\u00fcleyelim:<\/p>\n<pre class=\"language-bash\"><code>date -d &quot;7 days ago&quot; +&quot;%Y-%m-%d&quot;<\/code><\/pre>\n<p><code class=\"language-\">-d<\/code> se\u00e7ene\u011fi, <code class=\"language-\">date<\/code> komutuna bir tarih belirtmemizi sa\u011flar.  &#8220;7 days ago&#8221; ifadesi, yedi g\u00fcn \u00f6nceki tarihi belirtir.  Bu \u00f6rnekte, sadece y\u0131l\u0131, ay\u0131 ve g\u00fcn\u00fc g\u00f6stermek i\u00e7in <code class=\"language-\">%Y-%m-%d<\/code> format\u0131n\u0131 kulland\u0131k.<\/p>\n<p><strong>Ger\u00e7ek Hayat \u00d6rne\u011fi ve Optimizasyon \u0130pu\u00e7lar\u0131 (Orta Seviye)<\/strong><\/p>\n<p>Bir web sunucusunun log dosyalar\u0131n\u0131 analiz etti\u011finizi ve belirli bir tarih aral\u0131\u011f\u0131ndaki hatalar\u0131 bulman\u0131z gerekti\u011fini varsayal\u0131m.  A\u015fa\u011f\u0131daki komut, <code class=\"language-\">access.log<\/code> dosyas\u0131nda 2024 y\u0131l\u0131n\u0131n Ocak ay\u0131ndaki t\u00fcm giri\u015fleri filtreler:<\/p>\n<pre class=\"language-bash\"><code>grep &quot;2024-01&quot; access.log<\/code><\/pre>\n<p>Bu y\u00f6ntem olduk\u00e7a basittir, ancak log dosyas\u0131 b\u00fcy\u00fckse performans sorunu ya\u015fayabilirsiniz. Daha verimli bir \u00e7\u00f6z\u00fcm i\u00e7in <code class=\"language-\">awk<\/code> komutunu kullanabiliriz:<\/p>\n<pre class=\"language-bash\"><code>awk '$4 ~ \/^2024-01\/{print}' access.log<\/code><\/pre>\n<p>Bu komut, d\u00f6rd\u00fcnc\u00fc s\u00fctundaki (tarih) 2024-01 ile ba\u015flayan sat\u0131rlar\u0131 filtreler.  <code class=\"language-\">awk<\/code>, <code class=\"language-\">grep<\/code>&#8216;e g\u00f6re daha h\u0131zl\u0131 ve daha esnektir, \u00f6zellikle b\u00fcy\u00fck dosyalar i\u00e7in.  Bu, ger\u00e7ek d\u00fcnya senaryolar\u0131nda performans optimizasyonunun \u00f6nemini g\u00f6stermektedir.  <code class=\"language-\">fatihsoysal.com<\/code> gibi web sitelerindeki log dosyalar\u0131n\u0131n analizi i\u00e7in bu t\u00fcr optimizasyonlar hayati \u00f6nem ta\u015f\u0131r.<\/p>\n<p><strong>\u0130leri D\u00fczey Teknikler: Zaman Dilimleri ve Performans Analizi<\/strong><\/p>\n<p>Farkl\u0131 zaman dilimlerinde \u00e7al\u0131\u015fan sistemler i\u00e7in tarih ve zaman formatlamas\u0131n\u0131 do\u011fru bir \u015fekilde y\u00f6netmek \u00f6nemlidir.  <code class=\"language-\">TZ<\/code> ortam de\u011fi\u015fkenini kullanarak zaman dilimini ayarlayabilirsiniz:<\/p>\n<pre class=\"language-bash\"><code>TZ=&quot;America\/New_York&quot; date +&quot;%Y-%m-%d %H:%M:%S %Z&quot;<\/code><\/pre>\n<p>Bu komut, New York zaman dilimini kullanarak tarih ve zaman\u0131 g\u00f6r\u00fcnt\u00fcler.  <code class=\"language-\">%Z<\/code> format belirleyicisi, zaman dilimini g\u00f6sterir.  Zaman dilimlerinin do\u011fru bir \u015fekilde y\u00f6netilmemesi, \u00f6zellikle da\u011f\u0131t\u0131k sistemlerde, ciddi sorunlara yol a\u00e7abilir.<\/p>\n<p><strong>Tarih Hesaplamalar\u0131 ve Karma\u015f\u0131k Formatlar<\/strong><\/p>\n<p><code class=\"language-\">date<\/code> komutu, basit tarih ve zaman formatlamas\u0131n\u0131n \u00f6tesinde daha karma\u015f\u0131k hesaplamalar yapman\u0131za olanak tan\u0131r. \u00d6rne\u011fin, belirli bir tarihten itibaren ge\u00e7en g\u00fcn say\u0131s\u0131n\u0131 hesaplayabilirsiniz:<\/p>\n<pre class=\"language-bash\"><code>date -d &quot;2024-01-01&quot; +%s  # 2024-01-01'in Unix zaman damgas\u0131\ndate -d &quot;2024-03-15&quot; +%s  # 2024-03-15'in Unix zaman damgas\u0131<\/code><\/pre>\n<p>Bu iki komutu <code class=\"language-\">bc<\/code> komutu ile birlikte kullanarak iki tarih aras\u0131ndaki g\u00fcn say\u0131s\u0131n\u0131 hesaplayabilirsiniz.  Bu, belirli bir olaydan ge\u00e7en s\u00fcreyi hesaplamak veya rapor olu\u015fturmak i\u00e7in faydal\u0131 olabilir.<\/p>\n<p><strong>Hata Y\u00f6netimi ve Edge Case&#8217;ler<\/strong><\/p>\n<p><code class=\"language-\">date<\/code> komutunu kullan\u0131rken, yanl\u0131\u015f format belirleyicileri veya ge\u00e7ersiz tarih de\u011ferleri gibi hatalarla kar\u015f\u0131la\u015fabilirsiniz.  Bu hatalar\u0131 \u00f6nlemek ve i\u015flemek i\u00e7in uygun hata y\u00f6netimi teknikleri kullanman\u0131z \u00f6nemlidir.  \u00d6rne\u011fin, <code class=\"language-\">date<\/code> komutu bir hata olu\u015ftu\u011funda bir hata kodu d\u00f6nd\u00fcr\u00fcr.  Bu hata kodunu kontrol ederek, program\u0131n\u0131z\u0131n hatal\u0131 girdilere kar\u015f\u0131 daha sa\u011flam olmas\u0131n\u0131 sa\u011flayabilirsiniz.<\/p>\n<p><strong>Bash ile Tarih ve Zaman Formatlaman\u0131n Performans Optimizasyonu<\/strong><\/p>\n<p>B\u00fcy\u00fck veri k\u00fcmeleriyle \u00e7al\u0131\u015f\u0131rken, <code class=\"language-\">date<\/code> komutunun performans\u0131n\u0131 optimize etmek \u00f6nemlidir.  Bunun i\u00e7in birka\u00e7 y\u00f6ntem vard\u0131r:<\/p>\n<p>* <strong><code class=\"language-\">awk<\/code> veya <code class=\"language-\">sed<\/code> kullan\u0131m\u0131:<\/strong>  <code class=\"language-\">date<\/code> komutu ile karma\u015f\u0131k i\u015flemler yapmak yerine, <code class=\"language-\">awk<\/code> veya <code class=\"language-\">sed<\/code> gibi daha verimli ara\u00e7lar\u0131 kullanabilirsiniz.<br \/>\n* <strong>\u00d6nbellekleme:<\/strong>  Ayn\u0131 tarih ve zaman bilgilerini tekrar tekrar i\u015flemek yerine, \u00f6nbellekleme teknikleri kullanarak performans\u0131 art\u0131rabilirsiniz.<br \/>\n* <strong>Paralelle\u015ftirme:<\/strong>  \u00c7ok \u00e7ekirdekli sistemlerde, paralel i\u015fleme teknikleri kullanarak <code class=\"language-\">date<\/code> komutunun performans\u0131n\u0131 art\u0131rabilirsiniz.<\/p>\n<p><strong>Sonu\u00e7: Bash&#8217;te Tarih ve Zaman Formatlama Ustas\u0131 Olmak<\/strong><\/p>\n<p>Bu rehberde, Bash&#8217;te tarih ve zaman formatlamas\u0131n\u0131n temellerinden ileri d\u00fczey tekniklerine kadar geni\u015f bir yelpazede bilgi edindiniz.  Ger\u00e7ek d\u00fcnya \u00f6rnekleri ve performans optimizasyonu ipu\u00e7lar\u0131 ile Bash&#8217;teki tarih ve zaman manip\u00fclasyonuna tam hakim oldunuz.  <code class=\"language-\">fatihsoysal.com<\/code> gibi web sitelerindeki otomasyon ve raporlama s\u00fcre\u00e7lerinde bu bilgileri kullanarak verimlili\u011finizi art\u0131rabilirsiniz.<\/p>\n<p><strong>S\u0131k\u00e7a Sorulan Sorular:<\/strong><\/p>\n<p>1. <strong><code class=\"language-\">date<\/code> komutu hangi format belirleyicilerini destekler?<\/strong>  <code class=\"language-\">man date<\/code> komutunu kullanarak t\u00fcm format belirleyicilerinin listesine ula\u015fabilirsiniz.<\/p>\n<p>2. <strong>Farkl\u0131 zaman dilimlerini nas\u0131l y\u00f6netirim?<\/strong>  <code class=\"language-\">TZ<\/code> ortam de\u011fi\u015fkenini kullanarak zaman dilimini ayarlayabilirsiniz.<\/p>\n<p>3. <strong>B\u00fcy\u00fck log dosyalar\u0131n\u0131 i\u015flerken performans\u0131 nas\u0131l art\u0131rabilirim?<\/strong>  <code class=\"language-\">awk<\/code> veya <code class=\"language-\">sed<\/code> gibi daha verimli ara\u00e7lar\u0131 kullan\u0131n ve m\u00fcmk\u00fcnse paralel i\u015fleme tekniklerini uygulay\u0131n.<\/p>\n<p>4. <strong><code class=\"language-\">date<\/code> komutu hatalar\u0131 nas\u0131l y\u00f6netilir?<\/strong>  <code class=\"language-\">date<\/code> komutunun d\u00f6nd\u00fcrd\u00fc\u011f\u00fc hata kodlar\u0131n\u0131 kontrol ederek hatalar\u0131 yakalayabilir ve program\u0131n\u0131z\u0131n daha sa\u011flam olmas\u0131n\u0131 sa\u011flayabilirsiniz.<\/p>\n<p>5. <strong>Unix zaman damgas\u0131 nedir ve nas\u0131l kullan\u0131l\u0131r?<\/strong> Unix zaman damgas\u0131, 1 Ocak 1970&#8217;ten itibaren ge\u00e7en saniyeleri temsil eder.  Tarih hesaplamalar\u0131 yapmak i\u00e7in kullan\u0131\u015fl\u0131d\u0131r.<\/p>\n<p>Yazar: Fatih Soysal<\/p>\n","protected":false},"excerpt":{"rendered":"# Bash&#8217;te Tarih ve Zaman Formatlama: Tam Bir Rehber Bash komut sat\u0131r\u0131nda tarih ve zaman\u0131 istedi\u011finiz gibi formatlamak,&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":[1328],"tags":[],"class_list":{"0":"post-26422","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-bash","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>Bash&#039;te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)<\/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\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/\" \/>\n<meta property=\"og:locale\" content=\"tr_TR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bash&#039;te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)\" \/>\n<meta property=\"og:description\" content=\"Hi\u00e7bir etiketi bulunamad\u0131.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/\" \/>\n<meta property=\"og:site_name\" content=\"Kodlar\u0131n Gizemli D\u00fcnyas\u0131\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-24T21:10:24+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\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/\"},\"author\":{\"name\":\"Fatih Soysal\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1\"},\"headline\":\"Bash&#8217;te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)\",\"datePublished\":\"2025-07-24T21:10:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/\"},\"wordCount\":1042,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1\"},\"articleSection\":[\"Bash\"],\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/#respond\"]}],\"copyrightYear\":\"2025\",\"copyrightHolder\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/\",\"url\":\"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/\",\"name\":\"Bash'te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)\",\"isPartOf\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/#website\"},\"datePublished\":\"2025-07-24T21:10:24+00:00\",\"description\":\"Hi\u00e7bir etiketi bulunamad\u0131.\",\"breadcrumb\":{\"@id\":\"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/#breadcrumb\"},\"inLanguage\":\"tr\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\/\/fatihsoysal.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bash&#8217;te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)\"}]},{\"@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":"Bash'te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)","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\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/","og_locale":"tr_TR","og_type":"article","og_title":"Bash'te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)","og_description":"Hi\u00e7bir etiketi bulunamad\u0131.","og_url":"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/","og_site_name":"Kodlar\u0131n Gizemli D\u00fcnyas\u0131","article_published_time":"2025-07-24T21:10:24+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\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/#article","isPartOf":{"@id":"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/"},"author":{"name":"Fatih Soysal","@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1"},"headline":"Bash&#8217;te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)","datePublished":"2025-07-24T21:10:24+00:00","mainEntityOfPage":{"@id":"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/"},"wordCount":1042,"commentCount":0,"publisher":{"@id":"https:\/\/fatihsoysal.com\/blog\/#\/schema\/person\/002a254750921dcfd568a99e48240dd1"},"articleSection":["Bash"],"inLanguage":"tr","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/#respond"]}],"copyrightYear":"2025","copyrightHolder":{"@id":"https:\/\/fatihsoysal.com\/blog\/#organization"}},{"@type":"WebPage","@id":"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/","url":"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/","name":"Bash'te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)","isPartOf":{"@id":"https:\/\/fatihsoysal.com\/blog\/#website"},"datePublished":"2025-07-24T21:10:24+00:00","description":"Hi\u00e7bir etiketi bulunamad\u0131.","breadcrumb":{"@id":"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/#breadcrumb"},"inLanguage":"tr","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/fatihsoysal.com\/blog\/bashte-tarih-ve-zamani-bicimlendirme-orneklerle\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/fatihsoysal.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Bash&#8217;te Tarih ve Zaman\u0131 Bi\u00e7imlendirme (\u00d6rneklerle)"}]},{"@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\/26422","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=26422"}],"version-history":[{"count":0,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/posts\/26422\/revisions"}],"wp:attachment":[{"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/media?parent=26422"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/categories?post=26422"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fatihsoysal.com\/blog\/wp-json\/wp\/v2\/tags?post=26422"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}