linux bin文件制作

时间:2021-07-07 15:14:05
1 [root@csmp-standalone ~]# cat test.sh 
2 #! /bin/sh
3 
4 lines=8   #shell 脚本行数+1
5 tmp=$(mktemp -d /tmp/patch_XXXXXX)
6 tail -n +$lines $0 > $tmp/test.tar
7 tar -xvf $tmp/test.tar -C $tmp
8 exit 0

 

cat test.sh test.tar > test.bin

chmod 777 test.bin

/bin/sh test.bin