11 lines
299 B
Bash
11 lines
299 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# collect all network configurations and save them in the store
|
||
|
|
||
|
sudo ls /etc/NetworkManager/system-connections \
|
||
|
| while read file
|
||
|
do
|
||
|
sudo cat /etc/NetworkManager/system-connections/$file \
|
||
|
| pass insert -m desktop/network-manager/system-connections/$file
|
||
|
done
|