"[big design up front] is the maxim of those that haven't implemented very many large systems."
#SICP Structure and Interpretation of Computer Programs
"[big design up front] is the maxim of those that haven't implemented very many large systems."
sed s/inicial/final/g -i ejemplo.txtsed s/inicial/final/ -i ejemplo.txtsed /ejemplo/d -i ejemplo.txtsed /^ejemplo/d -i ejemplo.txtsed /ejemplo$/d -i ejemplo.txtsed '1,2 d' -i fichero.txtsed '$ d' -i fichero.txtsed '/^$/ d' -i fichero.txtsed -n '1,3 p' fichero.txtsed -n '4,6 p' fichero.txtman sedinfo sedcat file_a | sort | uniq
cat file_a | sort | uniq -c
cat file_a file_b | sort | uniq > file_ccat file_a file_b | sort | uniq -d > file_ccat file_a file_b file_b | sort | uniq -u > file_cMás info:man sortman uniqinfo coreutils