Most powerful examples of Unix commands or scripts every programmer should know

后端 未结 25 1805
遇见更好的自我
遇见更好的自我 2021-01-29 18:14

There are many things that all programmers should know, but I am particularly interested in the Unix/Linux commands that we should all know. For accomplishing tasks that we may

25条回答
  •  我在风中等你
    2021-01-29 18:56

    When things work on one server but are broken on another the following lets you compare all the related libraries:

    export MYLIST=`ldd amule | awk ' { print $3; }'`; for a in $MYLIST; do cksum $a; done
    

    Compare this list with the one between the machines and you can isolate differences quickly.

提交回复
热议问题