dayuskirei.blogspot.com
dayus_kirei: Desember 2009
http://dayuskirei.blogspot.com/2009_12_01_archive.html
ABOUT INFORMATIKA and ANIME. Senin, 14 Desember 2009. INTERNET: Pengertian, Sejarah, dan Fasilitas-Fasilitasnya. Sementara jaringan lokal biasanya terdiri atas komputer sejenis (misalnya DOS atau UNIX), INTERNET mengatasi perbedaan berbagai sistem operasi dengan menggunakan “bahasa” yang sama oleh semua jaringan dalam pengiriman data. Pada dasarnya inilah yang menyebabkan besarnya dimensi INTERNET. 8226;Fungsi : Internet merupakan media komunikasi dan informasi modern. Banyak hal di INTERNET hanya dapat ...
dayuskirei.blogspot.com
dayus_kirei: November 2009
http://dayuskirei.blogspot.com/2009_11_01_archive.html
ABOUT INFORMATIKA and ANIME. Rabu, 18 November 2009. Pada titik ini, kartu jaringan Anda sudah terinstall secara fisik pada komputer Anda, dan modul kernel yang relevan sudah dimuat. Anda belum bisa berkomunikasi melalui kartu jaringan Anda, tetapi informasi tentang perangkat jaringan sudah bisa didapatkan dengan ifconfig -a. Eth0 Link encap:Ethernet HWaddr 00:A0:CC:3C:60:A4. UP BROADCAST NOTRAILERS RUNNING MULTICAST MTU:1500 Metric:1. RX packets:110081 errors:1 dropped:0 overruns:0 frame:0. Sementara te...
linux.byexamples.com
Remove all .svn directories at once » Linux by Examples
http://linux.byexamples.com/archives/195/remove-all-svn-directories-at-once
We explain every GNU/Linux command by examples in this blog! Remove all .svn directories at once. January 19th, 2007 toydi Posted in Common. Hits: 88164 8 Comments. When you check out a project code base from a. Repository, each downloaded directory (from top to the deepest) contains a. Hidden directory that keeps svn’s necessary metadata. If you want to remove them all at once, here’s one way to do it:. Project dir $ find -name .svn -print0 xargs -0 rm -rf. Find -name .svn. Xargs -0 rm -rf. 8 Responses ...
linux.byexamples.com
xmllint » Linux by Examples
http://linux.byexamples.com/archives/category/text-manipulation/xmllint
We explain every GNU/Linux command by examples in this blog! Your XML friend XPATH command line xmllint. March 5th, 2011 mysurface. Do you have a large XML to analyze? To query for info? Maybe you are using a XML viewer, a string search for that. But if your XML have a proper structure and you have understand enough for the structure, you may want to consider to use XPATH. [Q] What is XPATH? XPath is a […]. Posted in Text Manipulation. Hits: 257525 100 Comments. Subscribe LBE by Email. News [17 Feb 2008].
linux.byexamples.com
How to trigger xchat from firefox? » Linux by Examples
http://linux.byexamples.com/archives/318/how-to-trigger-xchat-from-firefox
We explain every GNU/Linux command by examples in this blog! How to trigger xchat from firefox? October 4th, 2007 mysurface Posted in firefox. Hits: 57303 8 Comments. When you hitting irc url such as irc:/ irc.freenode.net/lbe. In firefox, is it possible to open up in xchat? The answer is yes. How? You need to add two lines of firefox config. Insert the line below into filter text bar to check. Network.protocol-handler.app.irc. Network.protocol-handler.external.irc. Set it to true. And set the string as.
linux.byexamples.com
easily extract a column of data from multiple columns » Linux by Examples
http://linux.byexamples.com/archives/81/easily-extract-a-column-of-data-from-multiple-column
We explain every GNU/Linux command by examples in this blog! Easily extract a column of data from multiple columns. October 2nd, 2006 mysurface Posted in cut. Hits: 98101 5 Comments. To extract a column of data from multiple column, we can use cut. Usually cut use to extract value from huge trace file or data file such as /etc/passwd. To extract all available user name from /etc/passwd, you can do this. Cut -d":" -f1 /etc/passwd. Cut extract value line by line, to put all into 1 line, you can use xargs.
linux.byexamples.com
GNU Bourne-Again SHell BASH, a well known shell for linux. » Linux by Examples
http://linux.byexamples.com/archives/category/bash
We explain every GNU/Linux command by examples in this blog! Export environment variable from a bash script. February 1st, 2011 mysurface. You may want to create a bash script that export some environment variable for your shell, but infect every execution of bash script is a unique session, where the variable export within it can’t be carry backward back to the bash shell. For example you have a env.sh which contains some environment variables export HELLO=hello […]. Hits: 153767 13 Comments. You may al...
linux.byexamples.com
export environment variable from a bash script » Linux by Examples
http://linux.byexamples.com/archives/559/export-environment-variable-from-a-bash-script
We explain every GNU/Linux command by examples in this blog! Export environment variable from a bash script. February 1st, 2011 mysurface Posted in Bash. Hits: 153768 13 Comments. You may want to create a bash script that export some environment variable for your shell, but infect every execution of bash script is a unique session, where the variable export within it can’t be carry backward back to the bash shell. For example you have a env.sh which contains some environment variables. Bin/bash export AR...
linux.byexamples.com
copy files and create the directories if it doesn’t exist » Linux by Examples
http://linux.byexamples.com/archives/569/copy-files-and-create-the-directories-if-it-not-exist
We explain every GNU/Linux command by examples in this blog! Copy files and create the directories if it doesn’t exist. June 3rd, 2011 mysurface Posted in dirname. Hits: 136270 24 Comments. It always have a need for this simple operation. I wanna copy certain files to a destination, but I wanna preserved the sub directories structure, any cp option to set? By just using cp command, until today, I do not see such option for it. You need additional commands, dirname and mkdir. Make directory on demand.