The Unix operating system is a general purpose OS that was developed by Bell Labs in the late 1960s and today exists in various versions. It is known for its large collection of simple command-line utilities which allow powerful file handling and text processing capabilities to be implemented via ...

learn more… | top users | synonyms (1)

-1
votes
1answer
22 views

executable jar slow response [closed]

I have a strange problem with my executable jar. Its really slow when ran in Unix machine compared to the response time in Eclipse IDE(windows). I have the same java version(jdk1.6.0_18) in both ...
-4
votes
1answer
20 views

How to create a json payload using file data [closed]

I have a file(.CSV) which has 20 columns data. I would like to read a file record by record and create a JSON payload using Unix Shell script Please provide an example Thanks, Balu
0
votes
3answers
25 views

basic alias for quote literal

Can anyone be of help why this is giving me errors and not working at my ~/.bashrc. greatly appreciated: alias ferr='grep ^ \'ERRROR\' ' trying to get ferr to find all lines that starts with ^ ...
0
votes
2answers
38 views

Awk lines between values

I have a similar infile: 1 And finally, monsieur, a wafer-thin mint. 2 Nah. 3 Oh, sir, it's only a tiny, little, thin one. 4 No. ****** off. I'm full. 5 Oh, sir. Hmm? It's only wafer thin. 6 Look. I ...
2
votes
0answers
31 views

boost::filesystem::recursive_directory_iterator: Wrong case

I use this code as c++ directory walker in order to obtain all files contents in a directory: boost::filesystem::path current_dir(DAT_PATH); for (boost::filesystem::recursive_directory_iterator ...
0
votes
2answers
34 views

Why is a zombie process necessary?

Wikipedia basically gives all the possible information about zombie processes that I NEED to know but just a simple line on how it might be useful..in that a conflict in PIDs will not exist in the ...
0
votes
0answers
27 views

Best way to collect logs from a remote server

I need to run some commands on some remote Solaris/Linux servers and collect their output in a log file on my local server. Currently, I'm using a simple Expect script, residing on the local server ...
0
votes
0answers
20 views

Setting an alias only for current user in Unix [migrated]

I want to create a Unix alias, that allows me for example to type l for ls -l. Nevertheless, I do not want to modify the file /etc/bash.bashrc as that one applies to all users I believe. How can I ...
0
votes
0answers
38 views

How to write to an existing UTF16LE file?

How can I write to an existing file with UTF16LE encoding? I've already used fopen(file, "a"); but the resulting file will be like this: <?xml version="1.0" encoding="UTF-16" ...
3
votes
4answers
73 views

Adding text using SED

i am working with a task right now, manipulating text in Unix, but i have no idea how i will do it. I am planning to use sed. this is wat i am trying to do. I have this text. BS111 xxxxx yyyyy ...
1
vote
2answers
55 views

Delete empty lines using SED [closed]

need your help with this one. I am trying to delete empty lines using sed sed '/^$/d' but i have no luck with it. for example I have this lines: xxxxxx yyyyyy zzzzzz and i want it to be ...
1
vote
1answer
61 views

can I tell if a pocess was killed or it crashed itself by stack dump?

I got a dumping stack when the process was killed. (gdb) Thread 2 (Thread 0xf6ec6b90 (LWP 10941)): #0 0xffffe410 in __kernel_vsyscall () #1 0xf7a47525 in *__GI___poll (fds=0xf7fb1558, nfds=1, ...
1
vote
1answer
23 views

Bash script with redirect input and sleep.

I have a file with input commands I would like to redirect into a program like so input.txt input1 input2 input3 input4 I would like to redirect this into the input of a program like so program ...
-3
votes
1answer
52 views

popen vs system function in C

Is The benefit of using popen is only to read the ouput produced by a command or there are some more benefits or advantages of popen over system. Consider two programs below: Program 1: #include ...
1
vote
3answers
46 views

replacing single quotes in AWK in a column/field

I have a file that looks like: 'abc', '123' 'abc', '123' 'abc', '123' 'abc', '123' 'abc', '123' 'abc', '123' I want to replace the single quotes only in column 2. I was trying the following AWK ...
0
votes
1answer
46 views

How to convert UTF8 with BOM to UTF16 LE

How can I convert UTF8 with BOM to UTF16LE? I already used iconv -f UTF8 -t UTF16 TEST.xml > TEST2.xml. When checking the contents using hex editor it shows prints both the UTF8 and UTF16 (EF BB BF FF ...
0
votes
2answers
46 views

Running awk on file, with regular expressions

I would like to find all occurrences of INPUT in a file, JUST INPUT. I have the following, but it finds everything with INPUT* awk '{for(i=1;i<=NF;i++){if($i~/^INPUT/){print $i}}}' I would like ...
0
votes
1answer
34 views

How to save a string from a file into a variable in bash

I am trying to make a script that will ask you for a path to several files when you set it up and when you run the actual script, it reads the path from a file that you created earlier. I can make the ...
-1
votes
1answer
52 views

GNU grep with regex support.

I found the solution to How do I get GNU grep to match exactly "H" and not things that just start with "H"? thanks to Kent using the following: grep -o '\bH\b'|wc -l But i need ...
0
votes
2answers
50 views

While read line, awk $line and write to variable

I am trying to split a file into different smaller files depending on the value of the fifth field. A very nice way to do this was already suggested and also here. However, I am trying to incorporate ...
1
vote
0answers
38 views

Unix issue, newbie to mac and unix [migrated]

this might be a stupid question, but I recently started doing unix and mac development, coming from a hard core work environment in .net. Anyway I am learning terminal use and how to mkdir and ls and ...
0
votes
2answers
55 views

How do I properly quote this bash pipeline for watch?

I've built up this pipeline: echo "scale=2;$(cat io | grep wchar | awk '{print $2}')/(1024^3)" | bc Now I'm trying to watch it. My knowledge of Bash is really ad-hoc, and so I'm not having success. ...
0
votes
0answers
28 views

whats the difference between chmod 777 and chmod 7777 [migrated]

I have a professor who insists on always typing chmod 7777, but I was taught that chmod 777 was the proper convention. I tried them out on the command line and chmod 777 something.txt yeilds ...
0
votes
2answers
40 views

Automate SMTP Using Python

I'm just beginning to use python to automate sending emails through gmail. I have gotten the whole process to work just typing directly into the command line, but now I want to automate the process ...
0
votes
1answer
49 views

UNIX: List files in directory with relative path

The question is: What command would you use to list the text files in your fileAsst directory (using a relative path)? The previous question was: Give a command to list the names of those text ...
0
votes
1answer
25 views

Prompting the user for file names in Unix

I want to write a script which prompts the user for the names of two files, lists the first file on screen and waits for user to press any key before second file is listed on the screen. But I am ...
-1
votes
0answers
22 views

how vulnerable is supervisor mode in Unix? [closed]

How can outsider gain access to supervisor mode in microprosessor illegally ( i.e how vulnerable is supervisor mode in Unix) ?I know in superviosr mode we can execute privileged instructions, contains ...
2
votes
1answer
46 views

While read line, awk $line with multiple delimiters

I am trying a small variation of this, except I telling awk that the delimiter of the file to be split based on the 5th field can either be a colon ":" or a tab \t. I do the awk -F '[:\t]' part alone, ...
2
votes
1answer
23 views

csh one liner to compare 2 zipped text files

I'm trying to compare 2 .gz text files using zcat and diff. This is on a JunOS box, so adding new binaries (zdiff) is not an option and only a limited number of other shells are available. It may be ...
2
votes
1answer
28 views

unable to insert date and hostname at the end of each line in korn script

I need to insert date and hostname to the end of the line in using ksh. The lines are output from the vmstat os that if a line starts with a number I need to add Date and Hostname to the end of the ...
0
votes
3answers
54 views

Remove first columns then leave remaining line untouched in awk

I am trying to use awk to remove first three fields in a text file. Removing the first three fields is easy. But the rest of the line gets messed up by awk: the delimiters are changed from tab to ...
1
vote
2answers
45 views

How to run unix enq command in java program

Here is the unix command for adding a file to the queue. enq -P QueueName:PrinterName FileName Is it possible to run the above command using java.
0
votes
1answer
68 views

why using pthread_exit?

I'm trying to figure out the usage of pthread_exit using this example code: void* PrintVar(void* arg) { int * a = (int *) arg; // we can access memory of a!!! printf( "%d\n", *a); } int ...
-1
votes
1answer
26 views

Using the man command in Unix, I want to list file names with file size etc. [closed]

By using the man command I want to list the names of the files I have already created with extra information such as filesize, date of modification etc. I know I have to use the man command possibly ...
1
vote
2answers
44 views

u2 or uniVerse code to iterate through folders,subfolders and files to check their permissions

I am new in uniVerse and I have to write a uniVerse program which will check permissions of folders,subfolders and files. for example we have a folder called A and subfolder A1 and files in A1. now ...
3
votes
6answers
87 views

How system function in C works

I have read that system function make use of execl, fork and wait functions internally. So, I tried to simulate working of system without using it. But I am not able to achieve the same working. When ...
0
votes
1answer
21 views

Debugging open() command call with truss

Using truss -t'open' $(program_call) I get: open("command.txt", O_RDONLY|O_NONBLOCK) = 5 response FIFO file descriptor = -1 // Open call was literally sandwiched between print commands, but its ...
-5
votes
1answer
44 views

UTF-16 file doesn't print correctly [closed]

Expected: Тестирование Actual: ÂÕáâØàÞÒÐÝØÕ The file was already in UTF-16 but the expected result differ from the actual result. anyone know why this occur. I used both char array and w_char but ...
2
votes
1answer
26 views

Recursively find and replace strings in SunOS 5.10

What would be a UNIX command for recursively finding and replacing strings in text files on a SunOS 5.10 machine? Ex: I want to replace a string SIR01111 with SIR02222 in files from my current ...
1
vote
4answers
120 views

FIFO Issue with concurrent processes

PRETEND THEY'RE NOT PARENT AND CHILD PROCESSES EVEN THOUGH THEY ARE. MAKE FIFO: /* Create response FIFO. */ if (mkfifo(RESP_FIFO_NAME, FIFO_MODE) == -1) { if (errno != EEXIST) { ...
1
vote
3answers
40 views

create a path from lines in a file on the unix command line

I want to build a basic Java class path in a bash script. This command works out all the jar files to go in my path: find ~/jars | grep \.jar$ This lists all the jar files I want on my path, one ...
2
votes
2answers
48 views

Shell script - sed doesn't work

I have: test.txt: version-1 version-1 ori.sh: old="version-1" new="version-2" sed -i .bak 's/${old}/${new}/g' test.txt when running ori.sh, nothing happens. I would expect that test.txt would ...
0
votes
3answers
41 views

Putting a word at each end of the text of a textfile in Unix

I just want to know what is the code in Unix if i had Text.txt, for example, and it contains: KERV KERV KERV KERV KERV kerv As an output I want to add , at each end of the word as follows: KERV, ...
-1
votes
1answer
48 views

Unable to open FIFO for writing

'Server' program side: #define RESP_FIFO_NAME "response" /* Global Variables */ char *cmdfifo = CMD_FIFO_NAME; /* Name of command FIFO. */ char *respfifo = RESP_FIFO_NAME; /* Name of response FIFO. ...
1
vote
2answers
34 views

how to add tab(multiple spaces) at each end of a text file using Unix

I am new to Unix commands. I would just like to ask if adding a tab or should i say multiple spaces right after at the end of each line in Unix is possible? To give a clearer view of what i am ...
0
votes
3answers
38 views

Apache User change/create password on first login

I have an index.php page for which i need to add user authentication I have about 80 users that will need access to this page. I want the users to change the password when they first connect to my ...
0
votes
2answers
26 views

How can I use awk to replace data in one file with updated data in a second file in a unix shell?

Let's say that I have two files, file 1 has the original data and file 2, which was recently created, has updated values for some of the data that need to be replaced into file 1. Here's an example ...
0
votes
2answers
48 views

awk automatically rounding off the output

i used the below awk command awk -F ':' ' { s3 += $3; } { s4=s4+$4; } { s5=s5+$5; } END { print s3,","s4,","s5,","s3/s5 }' sample.txt > sample1.txt And my input file (sample.txt) is: ...
-5
votes
0answers
30 views

File permssions in unix [closed]

In a directory there are three hardlinks named h1,h2,h3 to the file /home/user/data. Show the command(s) to set read,write permission for owner for h1 and read,execute permission for owner for h2 and ...
0
votes
1answer
45 views

Unix - print grep output in order

I'm using this istruction: VAR=$(grep -r -i --color=always --exclude=\*.{sh,pdf,doc,docx} "$WORD" "$DIRECTORY") this gives me an output like this: ...

1 3 4 5 6 7 276