当前位置:首页 » 操作系统 » linux字符拼接

linux字符拼接

发布时间: 2025-03-25 12:28:17

linux中用shell时奇怪的字符串拼接和时间计算问题

testt=$(date +%Y-%m-%d)
date2="14/08/12"
test=20
testtt="${test}${date2}"
time1=$(date +%s -d "$testt" )
time2=$(date +%s -d "$testtt" )
time=$(($time1-$time2))
echo $time

改成引号,去掉括号!!

❷ Linux shell: 变量与字符串拼接出新变量到if语句

不能这样写 "${TN3RD_$(echo ${library} | tr '[a-z]' '[A-Z]')_SUPPORT}"
直接写:
if [ "$library" == "zlib" ];then

echo "${library} is included"
fi

❸ linux shell 字符串拼接方法

CROSS_COMPILE=arm-openwrt-linux-muslgnueabi-

echo $CROSS_COMPILE

方法1:

    test1=$(echo $CROSS_COMPILE)gcc

    echo $test1

方法2:

    test2=${CROSS_COMPILE}gccabc

    echo $test2

热点内容
数控车床电脑编程 发布:2025-08-23 00:40:32 浏览:243
安卓手机如何一键修改序列号 发布:2025-08-23 00:31:33 浏览:428
vsqt编译通过 发布:2025-08-23 00:29:58 浏览:460
android设置sd卡 发布:2025-08-23 00:18:47 浏览:863
混合存储提供商 发布:2025-08-23 00:06:08 浏览:436
行锁算法 发布:2025-08-23 00:05:05 浏览:903
手机编程苹果 发布:2025-08-23 00:02:41 浏览:287
脚本会被杀毒软件 发布:2025-08-22 23:56:03 浏览:140
gta5车文件夹 发布:2025-08-22 23:47:58 浏览:184
编译标准 发布:2025-08-22 23:45:59 浏览:173