Linux Shell输出命令

Linux Shell的输出有两种,echo 和 printf


一,echo

     1,显示普通字符串

          echo "It is a test"  

          echo In is a test

          echo ${name}


      2,显示换行

           echo -e "OK ! \n"


      3,显示不换行

           echo -e "OK ! \c"


      4,显示结果定向到文件

           echo "wang wuguai lalala" > myfile



二,printf

      printf format-string [arguments]

      printf "%-10s %-10s %-4.2f"  姓名 性别 体重kg

      printf "%-10s %-10s %-4d\n"

你可能感兴趣的:(Linux Shell输出命令)