Sponsored Content
Full Discussion: FTP decoding
Top Forums Shell Programming and Scripting FTP decoding Post 302906992 by Bhavesh Sharma on Wednesday 25th of June 2014 06:35:24 AM
Old 06-25-2014
Thanks Fpmurphy for the explanation. I got what you explained except one part. What is the use of "<<!" in ftp -n -i -v > $logftp_trg 2>&1 <<!
. Also does '$logftp_trg 2>&1' simply inserts the oupt into the file specified by $logftp_trg. If we want to send the STDOUT and STDERR in the file shoudn't it be like '2>&1>$logftp_trg'
 

10 More Discussions You Might Find Interesting

1. Programming

Decoding of Core Dump

Hi ALL, Is it possible to decode the core dumb file to find the error? I get an Memory Core Dumb error with an core file. Regards, P. Prathaban. (3 Replies)
Discussion started by: p_prathaban
3 Replies

2. Shell Programming and Scripting

decoding commands

hi please can anyone help me in decoding shell commands. i need a way to decode the encrypted shell commands. (8 Replies)
Discussion started by: rochitsharma
8 Replies

3. Shell Programming and Scripting

decoding URL encoded strings

Hi, I have a couple pages of URL encoded strings that I need to unencode (they were originally in Arabic). So the first step is to unencode the strings and then to translate them to English. They are actually lists of words so the translation from Arabic to English shouldn't be too complicated.... (1 Reply)
Discussion started by: ed111
1 Replies

4. IP Networking

Packet decoding

Hi, wondering if anyone can suggest a tool to me that will let me either cut & paste hex or type it in for packet decoding. I want to be able to decode a packet as done with tcpdump or wireshark, but I want to be able to manually input the hex myself. (2 Replies)
Discussion started by: Breakology
2 Replies

5. UNIX for Dummies Questions & Answers

URL decoding with awk

The challenge: Decode URL's, i.e. convert %HEX to the corresponding special characters, using only UNIX base utilities, and without having to type out each special character. I have an anonymous C code snippet where the author assigns each hex digit a number from 0 to 16 and then does some... (2 Replies)
Discussion started by: uiop44
2 Replies

6. UNIX for Dummies Questions & Answers

Decoding a string

Hi, If my input string is 3a3b4c then my result should be aaabbbcccc. Please guide me how to achieve this in a bash script. Thanks (18 Replies)
Discussion started by: pandeesh
18 Replies

7. Shell Programming and Scripting

[Solved] Decoding a base 64 string

Is it possible to decode a base 64 string in linux or unix. If so, related commands or reference notes would be really helpful. (1 Reply)
Discussion started by: chandu123
1 Replies

8. Web Development

Random - Any help decoding obfuscated code?

I have this following file and I would quite like to get it decoded - any help / advice is appreciated. I would like to know how to decrypt it, however if someone is able to do it for me I would be equally grateful. <?php //Obfuscation provided by FOPO - Free Online PHP Obfuscator v1.2:... (6 Replies)
Discussion started by: mcclunyboy
6 Replies

9. Shell Programming and Scripting

Decoding and pattern matching

Hello, I have a huge file with over 700,00 SNPs with 18 columns. One column is in the format --+-+ ---++ ????? -???? Now i have another list which corresponds to this code in a particular order A-1 B-7 C-11 D-3 E-100 Now I need to match the expression above to the pattern,... (1 Reply)
Discussion started by: nans
1 Replies

10. Programming

ASN1 decoding error

Hi, fellows i am modifying asn1 schema to be able to decode a file, but i am hitting a error on one of the fields using free online tool asn1-playground. I suspect i need to change type and have tried with IDENTIFIER but it doesn't help...any ideas check the schema and file down , please ... (0 Replies)
Discussion started by: tahchiev01
0 Replies
explain_wait(3) 					     Library Functions Manual						   explain_wait(3)

NAME
explain_wait - explain wait(2) errors SYNOPSIS
#include <libexplain/wait.h> const char *explain_wait(int *status); const char *explain_errno_wait(int errnum, int *status); void explain_message_wait(char *message, int message_size, int *status); void explain_message_errno_wait(char *message, int message_size, int errnum, int *status); DESCRIPTION
These functions may be used to obtain explanations for errors returned by the wait(2) system call. explain_wait const char *explain_wait(int *status); The explain_wait function is used to obtain an explanation of an error returned by the wait(2) system call. The least the message will contain is the value of strerror(errno), but usually it will do much better, and indicate the underlying cause in more detail. The errno global variable will be used to obtain the error value to be decoded. This function is intended to be used in a fashion similar to the following example: if (wait(status) < 0) { fprintf(stderr, "%s ", explain_wait(status)); exit(EXIT_FAILURE); } status The original status, exactly as passed to the wait(2) system call. Returns: The message explaining the error. This message buffer is shared by all libexplain functions which do not supply a buffer in their argument list. This will be overwritten by the next call to any libexplain function which shares this buffer, including other threads. Note: This function is not thread safe, because it shares a return buffer across all threads, and many other functions in this library. explain_errno_wait const char *explain_errno_wait(int errnum, int *status); The explain_errno_wait function is used to obtain an explanation of an error returned by the wait(2) system call. The least the message will contain is the value of strerror(errnum), but usually it will do much better, and indicate the underlying cause in more detail. This function is intended to be used in a fashion similar to the following example: if (wait(status) < 0) { int err = errno; fprintf(stderr, "%s ", explain_errno_wait(err, status)); exit(EXIT_FAILURE); } errnum The error value to be decoded, usually obtained from the errno global variable just before this function is called. This is neces- sary if you need to call any code between the system call to be explained and this function, because many libc functions will alter the value of errno. status The original status, exactly as passed to the wait(2) system call. Returns: The message explaining the error. This message buffer is shared by all libexplain functions which do not supply a buffer in their argument list. This will be overwritten by the next call to any libexplain function which shares this buffer, including other threads. Note: This function is not thread safe, because it shares a return buffer across all threads, and many other functions in this library. explain_message_wait void explain_message_wait(char *message, int message_size, int *status); The explain_message_wait function may be used to obtain an explanation of an error returned by the wait(2) system call. The least the message will contain is the value of strerror(errno), but usually it will do much better, and indicate the underlying cause in more detail. The errno global variable will be used to obtain the error value to be decoded. This function is intended to be used in a fashion similar to the following example: if (wait(status) < 0) { char message[3000]; explain_message_wait(message, sizeof(message), status); fprintf(stderr, "%s ", message); exit(EXIT_FAILURE); } message The location in which to store the returned message. If a suitable message return buffer is supplied, this function is thread safe. message_size The size in bytes of the location in which to store the returned message. status The original status, exactly as passed to the wait(2) system call. explain_message_errno_wait void explain_message_errno_wait(char *message, int message_size, int errnum, int *status); The explain_message_errno_wait function may be used to obtain an explanation of an error returned by the wait(2) system call. The least the message will contain is the value of strerror(errnum), but usually it will do much better, and indicate the underlying cause in more detail. This function is intended to be used in a fashion similar to the following example: if (wait(status) < 0) { int err = errno; char message[3000]; explain_message_errno_wait(message, sizeof(message), err, status); fprintf(stderr, "%s ", message); exit(EXIT_FAILURE); } message The location in which to store the returned message. If a suitable message return buffer is supplied, this function is thread safe. message_size The size in bytes of the location in which to store the returned message. errnum The error value to be decoded, usually obtained from the errno global variable just before this function is called. This is neces- sary if you need to call any code between the system call to be explained and this function, because many libc functions will alter the value of errno. status The original status, exactly as passed to the wait(2) system call. SEE ALSO
wait(2) wait for process to change state explain_wait_or_die(3) wait for process to change state and report errors COPYRIGHT
libexplain version 0.52 Copyright (C) 2008 Peter Miller explain_wait(3)
All times are GMT -4. The time now is 08:12 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy