echo $CROSS_COMPILE
方法1:
test1=$(echo $CROSS_COMPILE)gcc
echo $test1
方法2:
test2=${CROSS_COMPILE}gccabc
echo $test2
可以使用strcat()函数,函数原型char *strcat(char *dest,const char *src)函数说明:strcat()会将参数src字符串拷贝到参数dest所指的字符串尾。第一个参数dest要有足够的空间来容纳要拷贝的字符串。返回值:返回参数dest的字符串起始地址。例子:
#include<string.h>
main()
{
char a[30]="string1"
char b[]="string2"
printf("before strcat():%s\n",a)
printf("after strcat():%s\n",strcat(a,b))
}
执行结果:
before strcat():string1
after strcat():string1string2
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
改成引号,去掉括号!!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)