test edilmedi etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
test edilmedi etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

7 Nisan 2013 Pazar

aliaslar

http://www.cyberciti.biz/tips/bash-aliases-mac-centos-linux-unix.html

9 Ekim 2012 Salı

Unix - Proxy ayarları

$http_proxy, $https_proxy and $ftp_proxy environment variables. Also, $no_proxy contains a comma-separated list of host patterns for which no proxy is used. For example:
http_proxy=http://proxy.example.com:3128/
no_proxy=localhost,127.0.0.1,*.example.com

9 Temmuz 2012 Pazartesi

Websphere değişkenleri dizini

environments/websphere variables

3 Temmuz 2012 Salı

Unix - sed örnekleri

string1'i string2 ile değiştir:
sed 's/string1/string2/g'

 # ile baslayanlari sil:
sed -e '/^#/d' dosya_adi

6 ile bitenleri sil:
sed -e '/6$/d' dosya_adi

2 uzunluklu satirlari sil:
sed -e '/^..$/d' dosya_adi

5 ile başlayanları bas:
sed -n "/^5/p" file

ilk satıırı sil:
sed -e '1d' /etc/services | more
 
Modify anystring1 to anystring2??????????????
sed 's/\(.*\)1/\12/g'

Remove comments and blank lines:??????????????
sed '/ *#/d; /^ *$/d'

Print 1000th line:
sed -n '1000{p;q}'

sed ':a; /\\$/N; s/\\\n//; ta'    Concatenate lines with trailing \
sed 's/[ \t]*$//'    Remove trailing spaces from lines
sed 's/\([`"$\]\)/\\\1/g'    Escape shell metacharacters active within double quotes
seq 10 | sed "s/^/      /; s/ *\(.\{7,\}\)/\1/"    Right align numbers



sed -n '10,20p;20q'    Print lines 10 to 20
sed -n 's/.*<title>\(.*\)<\/title>.*/\1/ip;T;q'    Extract title from HTML web page
sed -i 42d ~/.ssh/known_hosts    Delete a particular line