在shell脚本中循环时响应本机链接中断

时间:2019-06-24 05:44:19

标签: reactjs shell react-native react-native-linking

下面有一个文件

react-native-webrtc
react-native-randombytes
react-native-fs
react-native-callkeep

有一个shell脚本,具有如下所示的两个循环

while read line
do
    echo ${line}
done < './links.patch'

while read line
do
    react-native link ${line}
done < './links.patch'

第一个循环打印每行正常工作,但是第二个循环仅链接第一个react-native-webrtc库,然后结束循环。有人知道吗

0 个答案:

没有答案