I am using hp-ux box and want to use wget to test a url is up or down. I am getting an error wget not found, samething happened with curl command. please suggest what can i use instead of wget and curl.
wget command not found in hp-ux box, looking for alternative
1.9k Views Asked by Amith Reddy At
1
There are 1 best solutions below
Related Questions in HP-UX
- Installing command view on HP-UX
- Migration from Java 1.4 to Java 17, how to handle deprecated or removed packages
- Working with shell scripts on hp-ux and need to convert time to epoch using date command. How to solve bad format character -s error?
- rsync command is not working when executing from remote ssh
- Error: call to undeclared function 'EXTSM'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
- ^M still at the end of my string even after chop/chomp
- Suppressing output after SSH to another server
- Getting an "unexpected" error when SSH and running a CD command
- Error:read ECONNRESET - I cannot successfully authenticate with the hp-ux server in node.js
- How to build ICU4C 70.1 on HP UX platform?
- malloc: shmatch.c:115: assertion botched free: start and end chunk sizes differ Aborting...ABORT instruction (core dumped) in bash regex
- Trobleshooting slow writes on hpux
- Failures bulding Perl 5.32.1 on HP-UX (hpia11.31) - related to failed regex evaluations
- Unix shell scripting: date format syntax
- run java jar file on HP-UX as UNIX as "os.name"
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you have perl installed with the libwww-perl distribution, you may have the lwp-request program. Usage is simple:
For scripting, the exit status will be zero if the URL is good and non-zero if it's bad. If you don't care about the output, just pipe it to
/dev/null:To avoid having to actually download the file at the URL, you can have
lwp-requestuse theHEADmethod like this: