{"id":8598,"date":"2023-03-27T11:31:01","date_gmt":"2023-03-27T02:31:01","guid":{"rendered":"https:\/\/www.auctionpro.co.kr\/?p=8598"},"modified":"2024-10-08T16:11:09","modified_gmt":"2024-10-08T07:11:09","slug":"%eb%b0%b0%ec%b9%98-%ed%8c%8c%ec%9d%bcbatch-file","status":"publish","type":"post","link":"https:\/\/www.auctionpro.co.kr\/?p=8598","title":{"rendered":"\ubc30\uce58 \ud30c\uc77c(Batch File)"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Overview :  \uae30\ubcf8<\/h3>\n\n\n\n<p><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>@echo off  :<\/li>\n\n\n\n<li>rem  :  \uc8fc\uc11d<\/li>\n\n\n\n<li>SET yyyymmdd=%DATE:~0,4%%DATE:~5,2%%DATE:~8,2%  :  20230327<\/li>\n\n\n\n<li>@color 0a :  0a \ubc30\uacbd\ud654\uba74 black , \ud3f0\ud2b8 \uce7c\ub7ec green <\/li>\n\n\n\n<li>@cls   : \ud654\uba74 Clear<\/li>\n\n\n\n<li>@break off :  \uc911\uac04\uc5d0 \uc0ac\uc6a9\uc790\uac00  Ctrl+Break \ubabb\ud558\ub3c4\ub85d \ud558\ub294 \uba85\ub839\uc5b4<\/li>\n\n\n\n<li>@title My Script  :  Win \uacc4\uc5f4\uc5d0\uc11c Windows Command Prompt  \uc5d0 \ub098\uc624\uac8c \ud558\ub294 Title<\/li>\n\n\n\n<li>EXIT  \/B 0 :    CMD.EXE  \ub05d\ub0b4\uae30 , 0 1 exitCode<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">\uc608\uc81c1<\/h2>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">@echo off\n:: Test \uc785\ub2c8\ub2e4.\nSET yyyymmdd=%DATE:~0,4%%DATE:~5,2%%DATE:~8,2%\nREM SET yyyymmdd=%DATE:~10,4%%DATE:~4,2%%DATE:~7,2%\nECHO %yyyymmdd%<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">\uc608\uc81c2<\/h2>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">@echo off\n \n:: log folder\n\nSET Folder=C:\\Log\nSET yyyymmdd=%DATE:~0,4%%DATE:~5,2%%DATE:~8,2%\n \nIF EXIST %Folder%\\%yyyymmdd%\\*.* ( rem file exist\n  :: ECHO %F% is existing\n  echo y| move  %Folder%\\%yyyymmdd%\\*.* %Folder%\\Temp\\\n  \n  ::winscp.com \/ini=nul \/script=C:\\\"Program Files (x86)\"\\WinSCP\\Log.txt\n    \n  if %ERRORLEVEL% neq 0 goto error\n \n\techo Success\n\t  echo y| del  %Folder%\\Temp\\*.*\n\t  ::echo y| move  %Folder%\\Temp\\*.xml %Folder%\\Log\\\n\t exit \/b 0\n\t \n\t:error\n\techo Error!\n\t   echo \"Error............\"\n\t exit \/b 1\n)<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">\uc608\uc81c 3 <\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>13\uc77c \uc804 \ub85c\uadf8 \ub514\ub809\ud1a0\ub9ac \uc0ad\uc81c<\/li>\n<\/ul>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">@Echo off\nCall :GetDate yy mm dd\n::Echo Today Year: %yy%  Month: %mm%  Day: %dd%\nSet \/A n=-13\nCall :DateAdd yy mm dd %n%\n::Echo %n%   Year: %yy%  Month: %mm%  Day: %dd%\n\nSET Folder=C:\\Log\nSET yyyymmdd=%yy%%mm%%dd%\n \n:: \ub514\ub809\ud1a0\ub9ac \uc874\uc7ac \uc5ec\ubd80 \ud655\uc778\nif not exist %Folder%\\%yyyymmdd% (\n    echo \uc9c0\uc815\ub41c \uacbd\ub85c\uc5d0 \ub514\ub809\ud1a0\ub9ac\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: %Folder%\\%yyyymmdd%\n    exit \/b\n)\n\n:: \ub514\ub809\ud1a0\ub9ac \uc0ad\uc81c\nrd \/s \/q %Folder%\\%yyyymmdd%\n\necho \ud30c\uc77c\uc774 \uc131\uacf5\uc801\uc73c\ub85c \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4: %Folder%\\%yyyymmdd%\n\t exit \/b 0\n)\n\n:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\n:GetDate yy mm dd\n::\n:: Func: Loads local system date components into args 1 to 3.\n:: \n:: Args: %1 var to receive year,                   4 digits (by ref)\n::       %2 var to receive month,     2 digits,    01 to 12 (by ref)\n::       %3 Var to receive day of month, 2 digits, 01 to 31 (by ref)\n:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\nSetLocal EnableExtensions\nfor \/f \"tokens=1-3 delims=.+-\" %%A in (\n  'wmic os get LocalDateTime^|findstr ^^[0-9]'\n    ) do Set _DT=%%A\nSet \"yy=%_DT:~0,4%\"&amp;Set \"MM=%_DT:~4,2%\"&amp;Set \"dd=%_DT:~6,2%\"\nendlocal&amp;set %1=%yy%&amp;set %2=%MM%&amp;set %3=%dd%&amp;goto :EOF\n:: GetDate.cmd :::::::::::::::::::::::::::::::::::::::::::::::::::::\n:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\n:DateAdd yy mm dd #days\n::\n:: Func: Adds\/subs Days from\/to a given date by converting to a \n::       Julian Day adding the offset and converting back.\n:: Args:\n::  %1 year  component used to create JD,        4 digits  (by ref)\n::  %2 month component used to create JD, leading zero ret (by ref)\n::  %3 day of month   used to create MJD, leading zero ret (by ref)\n::  %4 days offset may be positive or negative (by val)\n:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\nSetLocal\nCall set \/A \"yy=%%%1%%,mm=100%%%2%% %%%%100,dd=100%%%3%% %%%%100\"\nSet \/A jd=(1461*(yy+4800+(mm-14)\/12))\/4\nSet \/A jd=jd+(367*(mm-2-12*((mm-14)\/12)))\/12\nSet \/A jd=jd-(3*((yy+4900+(mm-14)\/12)\/100))\/4,jd=jd+dd-32075\nSet \/A jd=jd+%4\nset \/A l=jd+68569,n=(4*l)\/146097,l=l-(146097*n+3)\/4\nSet \/A i=(4000*(l+1))\/1461001,l=l-(1461*i)\/4+31,j=(80*l)\/2447\nSet \/A dd=l-(2447*j)\/80,l=j\/11,mm=j+2-(12*l),yy=100*(n-49)+i+l\n(if %mm% LSS 10 set mm=0%mm%)&amp;(if %dd% LSS 10 set dd=0%dd%)\nEndlocal&amp;set %1=%yy%&amp;set %2=%mm%&amp;set %3=%dd%&amp;Goto :Eof\n:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">\uc608\uc81c 4<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>IIS \ub85c\uadf8 \ud30c\uc77c  \uc77c\uc815 \ub0a0\uc9dc  \ud30c\uc77c \uc0ad\uc81c <\/li>\n<\/ul>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \" >@Echo off\nCall :GetDate yy mm dd\n::Echo Today Year: %yy%  Month: %mm%  Day: %dd%\nSet \/A n=-7\nCall :DateAdd yy mm dd %n%\n::Echo %n%   Year: %yy%  Month: %mm%  Day: %dd%\n \nSET Folder=C:\\inetpub\\logs\\LogFiles\nSET yyyymmdd=%yy%%mm%%dd%\n\n:: 20241008 \uc5d0\uc11c \uc778\ud14d\uc2a4 \ub450\ubc88\uc9f8 \ubd80\ud130 \ub05d\uac00\uc9c0 :  241008 \ub9cc \uac00\uc838\uc624\uae30 \nSET last_six=%yyyymmdd:~2% \n::SET last_six=%yyyymm:~2% \n::SET last_six=%yyyy:~2% \n\nfor \/d %%D in (\"%Folder%\\*\") do (\n    echo Deleting log files in: %%D\n    del \/q \"%%D\\u_ex%last_six%*.log\"\n)\n \necho \ud30c\uc77c\uc774 \uc131\uacf5\uc801\uc73c\ub85c \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4: %Folder%\\%yyyymmdd%\n\t exit \/b 0\n)\n \n:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\n:GetDate yy mm dd\n::\n:: Func: Loads local system date components into args 1 to 3.\n:: \n:: Args: %1 var to receive year,                   4 digits (by ref)\n::       %2 var to receive month,     2 digits,    01 to 12 (by ref)\n::       %3 Var to receive day of month, 2 digits, 01 to 31 (by ref)\n:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\nSetLocal EnableExtensions\nfor \/f \"tokens=1-3 delims=.+-\" %%A in (\n  'wmic os get LocalDateTime^|findstr ^^[0-9]'\n    ) do Set _DT=%%A\nSet \"yy=%_DT:~0,4%\"&amp;Set \"MM=%_DT:~4,2%\"&amp;Set \"dd=%_DT:~6,2%\"\nendlocal&amp;set %1=%yy%&amp;set %2=%MM%&amp;set %3=%dd%&amp;goto :EOF\n:: GetDate.cmd :::::::::::::::::::::::::::::::::::::::::::::::::::::\n:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\n:DateAdd yy mm dd #days\n::\n:: Func: Adds\/subs Days from\/to a given date by converting to a \n::       Julian Day adding the offset and converting back.\n:: Args:\n::  %1 year  component used to create JD,        4 digits  (by ref)\n::  %2 month component used to create JD, leading zero ret (by ref)\n::  %3 day of month   used to create MJD, leading zero ret (by ref)\n::  %4 days offset may be positive or negative (by val)\n:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\nSetLocal\nCall set \/A \"yy=%%%1%%,mm=100%%%2%% %%%%100,dd=100%%%3%% %%%%100\"\nSet \/A jd=(1461*(yy+4800+(mm-14)\/12))\/4\nSet \/A jd=jd+(367*(mm-2-12*((mm-14)\/12)))\/12\nSet \/A jd=jd-(3*((yy+4900+(mm-14)\/12)\/100))\/4,jd=jd+dd-32075\nSet \/A jd=jd+%4\nset \/A l=jd+68569,n=(4*l)\/146097,l=l-(146097*n+3)\/4\nSet \/A i=(4000*(l+1))\/1461001,l=l-(1461*i)\/4+31,j=(80*l)\/2447\nSet \/A dd=l-(2447*j)\/80,l=j\/11,mm=j+2-(12*l),yy=100*(n-49)+i+l\n(if %mm% LSS 10 set mm=0%mm%)&amp;(if %dd% LSS 10 set dd=0%dd%)\nEndlocal&amp;set %1=%yy%&amp;set %2=%mm%&amp;set %3=%dd%&amp;Goto :Eof\n:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Overview : \uae30\ubcf8 \uc608\uc81c1 \uc608\uc81c2 \uc608\uc81c 3 \uc608\uc81c 4<\/p>\n<\/div>","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[245],"tags":[],"class_list":["post-8598","post","type-post","status-publish","format-standard","hentry","category--batch-file"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ubc30\uce58 \ud30c\uc77c(Batch File) - AuctionPro<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.auctionpro.co.kr\/?p=8598\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ubc30\uce58 \ud30c\uc77c(Batch File) - AuctionPro\" \/>\n<meta property=\"og:description\" content=\"Overview : \uae30\ubcf8 \uc608\uc81c1 \uc608\uc81c2 \uc608\uc81c 3 \uc608\uc81c 4\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.auctionpro.co.kr\/?p=8598\" \/>\n<meta property=\"og:site_name\" content=\"AuctionPro\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-27T02:31:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-08T07:11:09+00:00\" \/>\n<meta name=\"author\" content=\"golgol\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"golgol\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8598#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8598\"},\"author\":{\"name\":\"golgol\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"headline\":\"\ubc30\uce58 \ud30c\uc77c(Batch File)\",\"datePublished\":\"2023-03-27T02:31:01+00:00\",\"dateModified\":\"2024-10-08T07:11:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8598\"},\"wordCount\":36,\"commentCount\":0,\"articleSection\":[\"\ubc30\uce58 \ud30c\uc77c(Batch File)\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8598#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8598\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8598\",\"name\":\"\ubc30\uce58 \ud30c\uc77c(Batch File) - AuctionPro\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\"},\"datePublished\":\"2023-03-27T02:31:01+00:00\",\"dateModified\":\"2024-10-08T07:11:09+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8598#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8598\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=8598#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ubc30\uce58 \ud30c\uc77c(Batch File)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\",\"name\":\"AuctionPro\",\"description\":\"\uc625\uc158\ud504\ub85c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\",\"name\":\"golgol\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?author=6\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ubc30\uce58 \ud30c\uc77c(Batch File) - AuctionPro","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:\/\/www.auctionpro.co.kr\/?p=8598","og_locale":"ko_KR","og_type":"article","og_title":"\ubc30\uce58 \ud30c\uc77c(Batch File) - AuctionPro","og_description":"Overview : \uae30\ubcf8 \uc608\uc81c1 \uc608\uc81c2 \uc608\uc81c 3 \uc608\uc81c 4","og_url":"https:\/\/www.auctionpro.co.kr\/?p=8598","og_site_name":"AuctionPro","article_published_time":"2023-03-27T02:31:01+00:00","article_modified_time":"2024-10-08T07:11:09+00:00","author":"golgol","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"golgol","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.auctionpro.co.kr\/?p=8598#article","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=8598"},"author":{"name":"golgol","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"headline":"\ubc30\uce58 \ud30c\uc77c(Batch File)","datePublished":"2023-03-27T02:31:01+00:00","dateModified":"2024-10-08T07:11:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=8598"},"wordCount":36,"commentCount":0,"articleSection":["\ubc30\uce58 \ud30c\uc77c(Batch File)"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.auctionpro.co.kr\/?p=8598#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.auctionpro.co.kr\/?p=8598","url":"https:\/\/www.auctionpro.co.kr\/?p=8598","name":"\ubc30\uce58 \ud30c\uc77c(Batch File) - AuctionPro","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/#website"},"datePublished":"2023-03-27T02:31:01+00:00","dateModified":"2024-10-08T07:11:09+00:00","author":{"@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"breadcrumb":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=8598#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.auctionpro.co.kr\/?p=8598"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.auctionpro.co.kr\/?p=8598#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/www.auctionpro.co.kr\/"},{"@type":"ListItem","position":2,"name":"\ubc30\uce58 \ud30c\uc77c(Batch File)"}]},{"@type":"WebSite","@id":"https:\/\/www.auctionpro.co.kr\/#website","url":"https:\/\/www.auctionpro.co.kr\/","name":"AuctionPro","description":"\uc625\uc158\ud504\ub85c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.auctionpro.co.kr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2","name":"golgol","url":"https:\/\/www.auctionpro.co.kr\/?author=6"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/8598","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=8598"}],"version-history":[{"count":0,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/8598\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=8598"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=8598"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=8598"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}