::pause >nul은 무엇을 의미합니까? (배치로) (What does ::pause >nul mean/do? (in batch))


문제 설명

::pause >nul은 무엇을 의미합니까? (배치로) (What does ::pause >nul mean/do? (in batch))

현재 일괄 AI 작업을 하고 있습니다. 이전에 ::pause >nul을 사용한 적이 있지만 정확히 무엇을 하는지 잘 모르겠습니다. 모든 답변에 감사드립니다.


참조 솔루션

방법 1:

  • :: means that the current line is a comment (it actually is an invalid label which works the same as a comment)
  • pause pauses the script untill the user presses a key
  • >nul redirects output to nothing.

  • </ul>

    This means that this is an outcommented pause that doesn't show the press any key to continue . . . message to the screen, so it doesn't do anything.

    (by user5617026Dennis van Gils)

    참조 문서

    1. What does ::pause >nul mean/do? (in batch) (CC BY‑SA 2.5/3.0/4.0)

#Artificial-Intelligence #batch-file #CMD #Windows






관련 질문

C++의 Langtons Ant(콘솔) - 코어 덤프됨 (Langtons Ant in C++ (console) - core dumped)

그리드 맵 탐색/채우기 알고리즘 (Algorithm for exploring/filling grid map)

사이먼 마크 투 오픈 소스 코드 (cyman mark two open souce code)

가위바위보 AI 이슈 (Rock paper scissors AI issue)

::pause >nul은 무엇을 의미합니까? (배치로) (What does ::pause >nul mean/do? (in batch))

4x4 TicTacToe 보드의 Minimax 알고리즘 (Minimax algorithm in 4x4 TicTacToe board)

타의 추종을 불허하는 minimax 검사기 알고리즘 (Unbeatable minimax checkers algorithm)

기계 학습을 사용하여 손으로 쓴 서명 이미지의 배경 제거 (Using machine learning to remove background in image of hand-written signature)

유효한 인덱스를 반환하지 않는 Tensorflow 텍스트 생성 (Tensorflow text generation not returning valid index)

NLP의 의미론적 유사성(텍스트 비교) - 최고의 패키지 또는 클라우드 서비스? (Semantic similarity (text comparison) in NLP - best package or cloud service?)

Android 애플리케이션에 RASA 챗봇 통합 (Integration of RASA Chatbot on Android Application)

Python과 함께 스레딩을 사용할 때 발생하는 코루틴 오류, RuntimeWarning: 코루틴 'time_messege'가 기다리지 않았습니다. (Coroutine error when using threading with python, RuntimeWarning: coroutine 'time_messege' was never awaited)







코멘트