Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #37.0K
~6K People Reached
Favorite Forums

5 Posted Topics

Member Avatar for Shreerang

The simple answer is... YES! [code] firefox "http://url.goes.here/" [/code] The better way to do this, assuming you had in mind a graphical *nix environment running gnome or kde (really just guessing here) would be to invoke xdg-open awesomeness. I only recently started using this, so let me know if I'm …

Member Avatar for daye_1
0
4K
Member Avatar for Shreerang

[QUOTE=Shreerang;1157589]Hey all, I have written a small script to download certain files from an ftp site. I use the wget function.I'd like to get a progress-bar with zenity to show the advancement of the wget function. Can anyone suggest a solution? Thanx, Shreerang Patwardhan.[/QUOTE] I had to look into this …

Member Avatar for Kiwicam
1
981
Member Avatar for johndoe444

[icode]cut[/icode] is my personal favorite for trimming one column, like a line number repeatedly. simple syntax, fast to type.

Member Avatar for Skifter
0
275
Member Avatar for copa1x1

A script is simply a list of commands that you would type on the command line. It's a text file that starts with a hash-bang (#!) and the program to run it, in this case /bin/bash or /bin/sh . Every following line is executed in that environment, one at a …

Member Avatar for Skifter
0
202
Member Avatar for i686-linux

I'm a grep fan and rarely use sed or awk. To pull the first and last name that often precede the address you can use this. [code] grep -o "[[:alnum:]]*[[:blank:]][[:alnum:]]*[[:blank:]][[:graph:]]*@[[:graph:]]*" [/code] This adds the first/last name preceding the address, by looking for all letters and numbers in any amount preceding …

Member Avatar for Skifter
0
1K

The End.