Skip to main content

Linux Command Line Tips

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Bookmark History

Saved by 223 people (-63 private), first by anonymouse user on 2006-07-14


Public Comment

on 2006-08-04 by natesdiigo

Good list of bash commands

on 2006-08-23 by inetgate

Linuxのコマンドライン一覧表

on 2006-09-17 by groper

This is a list of linux commands for common operations. Note items marked with • are valid/safe to paste without modification into a terminal, so you may want to keep a terminal window open while reading this so you can cut & paste.

on 2006-10-25 by rjjjsp

This is a list of linux commands for common operations.

Public Sticky notes

This is a list of linux commands for common operations.
Note items marked with • are valid/safe to paste without modification into a terminal, so
you may want to keep a terminal window open while reading this so you can cut & paste.

Highlighted by juparave

This is a list of linux commands for common operations.
Note items marked with • are valid/safe to paste without modification into a terminal, so
you may want to keep a terminal window open while reading this so you can cut & paste.

Highlighted by gronas

Linux Command Line Tips

Highlighted by glider126

This is a list of linux commands for common operations.

Highlighted by ivanii

cd -Go to previous directory

Highlighted by diigo_llogin

log

Highlighted by bill42

call

Highlighted by thethinkingman

List all packages by installed size (Bytes) on rpm distros

Highlighted by dirkski

grep --color

Highlighted by diigo_llogin

pr -T9 -W$COLUMNS

Highlighted by diigo_llogin

cd -

Highlighted by diigo_llogin

cd dir && command)

Highlighted by diigo_llogin

rsync (Use the --dry-run option for testing)

Highlighted by diigo_llogin

find -type f -print0 | xargs -r0 grep -F 'example'

Highlighted by diigo_llogin

find -maxdepth 1 -type d | while read dir; do echo $dir; echo cmd2; done

Highlighted by diigo_llogin

networking (Note ifconfig, route, mii-tool, nslookup commands are obsolete)

Highlighted by diigo_llogin

set operations (Note LANG=C is for speed) (Note also these assume no duplicate lines within a file)

Highlighted by diigo_llogin

cal -3

Highlighted by diigo_llogin

date --date='25 Dec' +%A

Highlighted by diigo_llogin

echo "DISPLAY=$DISPLAY xmessage cooker" | at "NOW + 30 minutes"

Highlighted by diigo_llogin

recode (Obsoletes iconv, dos2unix, unix2dos) •recode -l | lessShow available conversions (aliases on each line)  recode windows-1252.. file_to_change.txtWindows "ansi" to local charset (auto does CRLF conversion)  recode utf-8/CRLF.. file_to_change.txtWindows utf8 to local charset  recode iso-8859-15..utf8 file_to_change.txtLatin9 (western europe) to utf8  recode ../b64 < file.txt > file.b64Base64 encode  recode /qp.. < file.txt > file.qpQuoted printable decode  recode ..HTML < file.txt > file.htmlText to HTML •recode -lf windows-1252 | grep euroLookup table of characters •echo -n 0x80 | recode latin-9/x1..dumpShow what a code represents in latin-9 charmap •echo -n 0x20AC | recode ucs-2/x2..latin-9/xShow latin-9 encoding •echo -n 0x20AC | recode ucs-2/x2..utf-8/xShow utf-8 encoding

Highlighted by harjeet

rpm -q -a --qf '%10{SIZE}\t%{NAME}\n' | sort -k1,1n

Highlighted by diigo_llogin

lsof ~List processes that have specified path open

Highlighted by amiigo

terminal

Highlighted by wittyguysuku