I would like to know what does the code below do
#!/cs/local/bin/sh
(cat $1; cat $2) | sort -r | uniq -d | cut -f1,4
can anybody explain it to me
#!/cs/local/bin/sh
(cat $1; cat $2) | sort -r | uniq -d | cut -f1,4
can anybody explain it to me
Comment