blob: 480d0d9554b6f13c6cbcc6b85c0179c8b4122de3 [file] [log] [blame]
wz.wang6c460702024-07-01 10:20:35 +08001if [ $# -ne 2 ];then
2 echo example : ./file_touch.sh lynq/CPE ap/Makefile
3 echo Create the lynq/CPE/ap/ directory and copy the ap/Makefile file to the lynq/CPE/ap/ directory
4 exit
5fi
6str=$1/$(dirname $2)
7echo $str/$(basename $2)
8mkdir -p $str
9cp $2 $str