-1
次のWindowsコマンドの機能は何ですか? NULへWindowsコマンドの説明
net user some_username>nul 2>&1 && goto :user_exists || goto :user_doesnt_exists
次のWindowsコマンドの機能は何ですか? NULへWindowsコマンドの説明
net user some_username>nul 2>&1 && goto :user_exists || goto :user_doesnt_exists
net user some_username
ユーザー「some_username」
>nul 2>&1
リダイレクトSTDOUTとSTDERRのショーのプロパティを(任意の出力を示していない)
(我々は唯一の希望、実際の出力を必要としませんnet user
コマンドは、(ユーザーが存在するかどうか)が成功したかどう
&& goto :user_exists
&&
)、
|| goto :user_doesnt_exists
||
は、「前のコマンドが正常に実行されなかった場合は、次に実行する」を意味します。
http://ss64.com/nt/syntax.html –