sudo apt-get install build-essential
Who knew?
Software, web, and programming tips: C++, Java, C, Linux, Windows, Cygwin, Firefox, Vim, WWW, RSS
sudo apt-get install build-essential
set expandtab
orset et
set shiftwidth=4
orset sw=4
set tabstop=4
orset ts=4
~/.vimrc
:autocmd BufNewFile,BufRead *.java,*.pl,*.c,*.h,*.cc,*.cpp,*.hpp set sw=4 ts=4 et
find . -name <file-pattern> -exec <command> {} \;
find . -name *.txt -exec grep -Hn hello {} \;
#!/bin/bash
find . -name *.[ch]pp -exec grep -Hn "$1" {} \;