ps -ef | grep java | tr " " "\n"
Show hidden files with du
du -sk .[!.]* *| sort -n
Show just hidden files with du
du -sh .[a-zA-Z]*
Trim last character in vi
:%s/.$//g
With sed
sed '$s/.$//'
Awk, print all on one line with a comma seperating
awk '{ printf "%s,", $1 }'
Find command with regex
find . -name \*[Ii]nstall\*[Ll]og\*
Remove all blank lines with awk
awk '/./' abc.txt
Show octal permissions when doing an ls
for file in `ls`; do echo -n `stat -c %a $file`; echo -n " "; ls -ltd $file; done
Using awk with a field seperator
awk 'BEGIN { FS = "," } ; { print $1 }'
Remove HTML tags from a file
sed "s/<[^>]\+>//g" file
Awk print from third column to the end
awk '{ print substr($0, index($0,$3)) }'