Linux: How to generate list of unique lines in a text file phptuts June 22, 2020 We have two methods: Method 1: cat ok.txt |sort | uniq > ok2.txt Method 2: sort -u ok.txt >> ok2.txt phptuts
Ubuntu error when build PHP with OpenSSL: expected ‘RSA *’ {aka ‘struct rsa_st *’} but argument is of type ‘const struct rsa_st *’