docker ps -a|tail -n +2|awk '{print $1}'|xargs docker start
This gives side-by-side diff.
diff -y file_1 file_2
| (defn multiple? | |
| "Check if the number-to-check is a multiple of number." | |
| [number-to-check number] | |
| (= 0 (mod number-to-check number))) | |
| (defn sieve-of-eratosthenes | |
| "For the number ranging from 2 to the given number 'upto'(inclusive), | |
| filters out all the numbers that are not prime and | |
| return the prime numbers." | |
| [upto] |
| import java.sql.ResultSet; | |
| import java.sql.SQLException; | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.List; | |
| import java.util.Map; | |
| import java.util.function.BiConsumer; | |
| import java.util.function.Supplier; | |
| import org.springframework.dao.DataAccessException; |
| import java.io.File; | |
| import java.io.FileInputStream; | |
| import java.io.FileNotFoundException; | |
| import java.io.IOException; | |
| import java.security.AccessController; | |
| import java.security.KeyManagementException; | |
| import java.security.KeyStore; | |
| import java.security.KeyStoreException; | |
| import java.security.NoSuchAlgorithmException; |