commit | 6c46070a2987fdf0bb268529880eced938ce896b | [log] [tgz] |
---|---|---|
author | wz.wang <zw.wang@mobiletek.cn> | Mon Jul 01 10:20:35 2024 +0800 |
committer | wz.wang <zw.wang@mobiletek.cn> | Mon Jul 01 10:20:35 2024 +0800 |
tree | a8bbae94d25c5dcd84cd3f86c1b522b1ba704c3e | |
parent | 038cd0bada4374137c55f4e69fb1c49102332330 [diff] [blame] |
add prj_mifi_min_aic8800dw Change-Id: I8dfb5282d9f51358e08bb1e4f90ca912c9d15295
diff --git a/file_touch.sh b/file_touch.sh new file mode 100755 index 0000000..480d0d9 --- /dev/null +++ b/file_touch.sh
@@ -0,0 +1,9 @@ +if [ $# -ne 2 ];then + echo example : ./file_touch.sh lynq/CPE ap/Makefile + echo Create the lynq/CPE/ap/ directory and copy the ap/Makefile file to the lynq/CPE/ap/ directory + exit +fi +str=$1/$(dirname $2) +echo $str/$(basename $2) +mkdir -p $str +cp $2 $str