Xcode shell教程

Shell 是一个用 C 语言编写的程序,它是用户使用 Linux 的桥梁。

Shell 脚本(shell script),是一种为 shell 编写的脚本程序。

具体可以看shell教程 shell教程

第一个shell脚本:

#!/bin/bash

echo "Hello World !"

查看输出内容:

View->Navigators->Show Report Navigator

在navigator界面可以看到输出内容

Shell创建文件:

echo "Hello Hello Hello!">>1.txt //创建并输出内容

你可能感兴趣的:(Xcode shell教程)