Unix– category –
-
Unix
【Command】フォルダの名前変更「change directory name /No such file or directory]
【Command】フォルダの名前変更「change directory name /No such file or directory] [code] mv ./hoge/folder ./hoge/newname [/code] -
Unix
【Command】フォルダのコピー「cp [directory] is a directory (not copied).」
【Command】cp [directory] is a directory (not copied). あれですけど、よく忘れるので。 add -r (mean "recursive") [code] cp -r directoryPath ./ [/code] -
Unix
【Unix】#!/bin/sh 意味、読み方
#!/bin/sh 意味、読み方 シェルスクリプトでよく見かける #!/bin/shの意味、読み方 読み方 シェバン、シバンと読みます。 意味 シェルスクリプトの1行目という意味です。 起動して読み込むインタプリタを指定します。
1