2020年10月30日 星期五

shell script 大寫轉小寫,小寫轉大寫

#大寫轉小寫
============= upper_to_lower.sh ================= 

value="$(echo $1 | tr '[:upper:]' '[:lower:]')"
echo $value

執行:
./upper_to_lower.sh  AA      ==>   aa



#小寫轉大寫
============= lower_to_upper_.sh ================= 

value="$(echo $1 | tr '[:upper:]' '[:lower:]')"
echo $value

執行:
./upper_to_lower.sh  aa     ==>   AA



2020年10月27日 星期二

Source Insight 無法加入 *.cc檔案

 遵照下面操作步驟,可以把*.cc檔案加入到目前Project


Options -> Document Options,然後在視窗上方 Document Type的下拉選項,選擇C++ Source File,右邊的File filter欄位,請加入 *.cc ,然後就可以選擇Close Button.














接著在右邊檔案列表的地方,按滑鼠右鍵,選擇 Synchronize Files

shell script if 判斷多個條件

 if判斷多個條件的寫法如下: (sh)

=================

#!/bin/sh
A=10
B=15

if [ $A = "10" ] && [ $B = "15" ]; then
    echo "A=10 and B=15"
fi

if [ $A = "10" ] || [ $B < $A ]; then
    echo "A=10 or B<A"
fi