help find wget, less, unzip source code


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers help find wget, less, unzip source code
# 1  
Old 02-29-2008
help find wget, less, unzip source code

Where can I find the source code to basic unix core utilities like less, wget, and unzip?

I'm on a HP-UX system that is missing a lot of basic tools. I Don't have admin access to the box. Google searches won't give me the source code.

I would like to install some of the missing tools, like wget, less and unzip to my home directory.

I know how to do this, but cannot find the source code to compile them from.

Where can I find the source code to these basic tools? I can find the source code to more complex programs like samba and screen, but cannot find the source code to these core utilities.

Thanks,
Gold Fish
# 2  
Old 02-29-2008
I haven't used HP-UX a lot, but as far as I know it's closed source, and you can't get the tools' source code. Search for a similar unix, who is open source, and look for the tools.
# 3  
Old 02-29-2008
Sorry, I realize now I wasn't as clear as I could have been.

I just want ANY version of wget that will run. I'm not even sure if HP-UX has its own version. I'm would agree with you that HP-UX is no doubt closed source, but this shouldn't stop me from getting SOME version of the source.

For example, I downloaded the generic version of gnu screen source code and compiled it into my home directory and it runs. The fact I'm using HP-UX was taken care of by the ./configure step of the compilation, and didn't have any inpact on what source code I had to download.

If someone knows where how I can get Gentoo's version of wget or anything like that, I would think that would work fine. The problem I'm encountering here is that no one puts out these programs because they come in the base install of almost every distrabution of Unix and Linux that I know.

Please help,
Thanks,
Gold Fish

I've tried searching for a million different things, "less source code" "gnu less source code" "coreutils source code" "compile less". I just wish "less" had a more distinctive name.
# 4  
Old 03-01-2008
Hi.

See Welcome! - Free Software Directory - Free Software Foundation noting the search box and Find It button.

You can go up the tree to see about the philosophy, community, etc., of FSF and GNU ... cheers, drl
# 5  
Old 03-04-2008
Great! Exactly what I was looking for. Lots of great stuff there too besides just what I was asking about.

Solid site for my bookmarks.

Thanks,
~Why Knot
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Check wget return code

hello check this script it jump to else part, in n both cases, (if files exist or not) wget $MIRROR/kkk.zip && wget $MIRROR/jjj.zip RC="$?" if ] then echo -e "$RED Ooops, Download links are broken...! $RESET" else echo -e "$GREEN Everything is fine, Cheers ... $RESET" fi (4 Replies)
Discussion started by: nimafire
4 Replies

2. Shell Programming and Scripting

Wget to download multiple source code

Can a modified command be used to download multiple source codes from specific sites and output each into a separate output file?. All the sites are in a text file (attached): wget -qO- http://www.genedx.com/test-catalog/available-tests/edar-gene-sequencing/ | cat > output.txt (4 Replies)
Discussion started by: cmccabe
4 Replies

3. Shell Programming and Scripting

Unzip the .zip file without using unzip utility in UNIX

I have .zip file, i want to list all the files archived in the zip file. unzip utility is not working for me in unix. Please help me resolve this issue Thanks ganesh. (3 Replies)
Discussion started by: Ganesh L
3 Replies

4. Shell Programming and Scripting

Deleting lines from wget script using find/sed

I am downloading numerous files (600 plus) using a 'wget' script. Some files are not downloading and have zero byte size. I am using the following 'find' command to find the files in my cd which have non-zero byte size after the wget script has been run. find -type f -size +0 -exec basename {}... (3 Replies)
Discussion started by: dl226
3 Replies

5. Shell Programming and Scripting

Block of code replacement in Java source code through Unix script

Hi, I want to remove the following code from Source files (or replace the code with empty.) from all the source files in given directory. finally { if (null != hibernateSession && hibernateSession.isOpen()) { //hibernateSession.close(); } } It would be great if the script has... (2 Replies)
Discussion started by: hareeshram
2 Replies

6. AIX

how to unzip wget-latest.tar.gz

I download wget-latest.tar.gz from Index of /gnu/wget, however, it saved in my windows as wget-latest.tar.tar After I ftp it to aix server, #file wget-latest.tar.tar wget-latest.tar.tar: data or International Language text how to uzip it? ---------- Post updated at 04:13 PM ----------... (3 Replies)
Discussion started by: rainbow_bean
3 Replies

7. Shell Programming and Scripting

How to Unzip a .ZIP file in Unix without using unzip cmd..?????

Hi All I have ftped a .ZIP file (zipped using WinZip in Windows) to my Unix server (HP-UX). I don't have unzip cmd available in my curent Unix version Please let me know any cmd in UNIX (other than unzip) using which I can unzip this .ZIP file . Please elaborate on the commands aval and... (5 Replies)
Discussion started by: sureshg_sampat
5 Replies

8. HP-UX

How to Unzip a .ZIP file in Unix without using unzip cmd..?????

Hi All I have ftped a .ZIP file (zipped using WinZip in Windows) to my Unix server (HP-UX). I don't have unzip cmd available in my curent Unix version Please let me know any cmd in UNIX (other than unzip) using which I can unzip this .ZIP file . Please elaborate on the commands aval and... (5 Replies)
Discussion started by: sureshg_sampat
5 Replies
Login or Register to Ask a Question