計算機科学のブログ

ほしい物リスト

Git - Beginning Git: Get Going with Git - command line, mkdir

Head First Git: A Learner’s Guide to Understanding Git from the Inside OutRaju Gandhi(著)、 O’Reilly Mediaの Chapter 1.(Beginning Git: Get Going with Git)、SHARPEN YOUR PENCIL(84/715)の解答を求めてみる。

入出力結果(Terminal, Zsh)

% mkdir my-first-commandline-directory
% cd my-first-commandline-directory 
% cd ..
% mkdir my-first-commandline-directory
mkdir: my-first-commandline-directory: File exists
% mkdir my-first-commandline-directory
mkdir: my-first-commandline-directory: File exists
%