This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # List of hard-coded table names | |
| tables=("table1" "table2") | |
| # Iterate over the table names | |
| for table in "${tables[@]}"; do | |
| # Output file name | |
| file_name="output-$table.sql" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // CMCWebRtcClient.swift | |
| // Streamie | |
| // | |
| // Created by Curtis Jones on 2022.02.21. | |
| // Copyright © 2022 Symphonic Systems, Inc. All rights reserved. | |
| // | |
| // ---------------------------------------------------------------------------- | |
| // | |
| // https://github.com/stasel/WebRTC-iOS/blob/main/WebRTC-Client-App/Sources/Services/WebRTCClient.swift |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| global | |
| #debug | |
| #daemon | |
| log 127.0.0.1 local0 | |
| defaults | |
| log global | |
| option httplog | |
| frontend unsecured *:80 |