“问题的表述常常比它的解决方案更重要。”——阿尔伯特·爱因斯坦
-
理解“为什么”和“谁”
要评估一个解决方案,需要先理解为什么需要某些东西以及谁需要它们。
I'm planning on either writing this up in detail or maybe doing a screencast about screencasting, but I'll give a short version here.
On sound quality:
This matters a lot. In decreasing order of importance:
假设在某路径下有 a.txt, b.txt, c.txt, d.txt, e.txt
五个文件,如何在保留特定某个的前提下删除其余的?
$ ls * | grep -v c.txt | xargs rm -f
grep -v
:-v
是 --invert-match
即指定排除条件;
xargs
:从 standard input
读取参数并以 space
,tab
,newline
和 end-of-line
作为分界符来分隔这些参数;然后传给它的参数——可以是一个处理命令。