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 ...
0
votes
0answers
5 views
how many direct indexes are there in an inode with 18 blocks?
I had this question in an exam recently:
How many direct indexes are there in an inode with 18 blocks?
the options were: 6, 8, 10, or 16
can someone please explain how to solve this kind of ...
0
votes
0answers
9 views
How to cut and paste tabbed lines with auto indent set to on in vi
Not sure which stack exchange group this question goes so please move to the correct one if this is the wrong one.
What's happening is if I highlight something with tabs/indents from one ...
0
votes
1answer
18 views
Oracle database login
A database administrator has used to connect to oracle database on unix operating system by using the following:
$ sqlplus sys/sysPass1@orcl as sysdba
What are the big mistakes in the previous ...
1
vote
1answer
27 views
Can someone explain this short getopts bash script in plain english? (UNIX)
This is the script:
file=$1
while getopts ":ivr" opt; do
case $opt in
i) iopt=1;;
v) vopt=1;;
r) ropt=1;;
\?)echo "invalid option: -$OPTARG" >
esac
done
shift $(($OPTIND-1))
So the only part I ...
-1
votes
1answer
24 views
how does built in commands of a shell implemented in Linux? as a function or thread of shell process? [closed]
I know that external commands are run in the shell by creating a separate process. But what exactly happens when a built in command is run in a shell.
Are they executed as a function or if the shell ...
0
votes
1answer
19 views
Debugging- stepping in to OS functions?
When coding C++ on Linux I use Eclipse CDT. When stepping into a C/C++ OS function I can see the assembler, but considering the files are all stored in /usr/include/ I thought the debugger would then ...
0
votes
0answers
10 views
SQLite3 on freebsd - compilation of first program
I installed sqlite3 from ports on FreeBSD and now does not sure how to correctly use it. So, I have some simple sqlite program from official tutorial. When compiling #include <sqlite3.h> with ...
0
votes
1answer
50 views
syntax error: unexpected end of file
I am getting this error when I run my Bash script:
syntax error: unexpected end of file
Cant really find where the error is, been looking for hours and still get this error.
Here is the script ...
-1
votes
1answer
28 views
How to use a mmap file mapping for variables
I'm currently experimenting with IPC via mmap on Unix.
So far, I'm able to map a sparse-file of 10MB into the RAM and access it reading and writing from two separated processes. Awesome :)
Now, I'm ...
0
votes
1answer
15 views
Count and display size of incoming stdin (count lines)
Is there a program that would result in output like "wc -l" but that would update counter on more data.
Here is what I want it for:
tail -f log/production.log | grep POST | wc -l
But wc -l should ...
0
votes
1answer
34 views
How to use unix and perl to open a website, enter text in a box, press “go”, and save results?
Sorry for the broad question, but I simply don't know how better to describe this or even what the action is called. It is akin to a web scraper, but it interacts with the website too.
I'm not trying ...
0
votes
0answers
35 views
How to delete a directory based on date and time
The below script will be called from a cronjob and my desire is to remove directories older than 10 mins of the current time.
I'm having trouble with the following in my script:
Trimming \n from ...
-1
votes
0answers
30 views
Good tutorial for using mv with pattern matching/grep [closed]
I've been using mv to batch rename files in terminal, but find I'm always copying code and using trial and error to tweak it to get what I want, without ever really understanding what each bit does ...
2
votes
0answers
15 views
Using only part of a pattern in SSH Config Hostname
I have an SSH config like the one below, which works great for:
ssh b21
ssh 23
ssh s267
Example .ssh/config (hostname passed is slotted in at %h):
host s*
HostName atrcu%h.example.com
User ...
0
votes
0answers
48 views
create poem in shell with sed or awk or [closed]
i work with text in my text are poem i want insert my poem in a specific tag for example this is a poem :
AAAA
BBBB
CCCC
DDDD
i want insert above text in these tags :
<br/><div ...
0
votes
2answers
25 views
How to grep a particular position line from the result?
I grep a pattern from a directory and the 4 lines before that pattern, I need to further grep the top line from each result , but not getting how to do .
Please suggest regarding this.
The problem ...
0
votes
1answer
31 views
get/set logical working directory from C
I have a symbolic link /home/me/symlink -> /home/me/realdir
when I try to getcwd in the directory /home/me/symlink I get /home/me/realdir with the following program:
int main(int argc, char **argv)
...
0
votes
1answer
24 views
I have a file having some columns. I would like to do sort for column 2 by grouping column 1 values
I have a file having some columns. I would like to do sort for column 2 by grouping column 1 values.
See below example.
Input File like:
NEW,RED,1
OLD,BLUE,2
NEW,BLUE,3
OLD,GREEN,4
Expected ...
-2
votes
2answers
39 views
What does dirname do? [closed]
Can any one please explain the use of below command in unix?
cd `dirname $0`
0
votes
1answer
20 views
How to find the last element in an array in unix?
How can i find the last element in an array in unix? I need find the last element in an array to do an if-statement:
if [ #last_array ];
then
#Do something
fi
How can i do it? Can ...
2
votes
1answer
42 views
Converting an UNIX python program to work in windows [closed]
I need to make a program that drives a DYMO LabelManager PnP label printing device. DYMO provides a SDK for this purpose, but after some desperate trying, I'd say the SDK is useless. Then I found a ...
0
votes
0answers
6 views
archive file entryName problems
I am working on reading archive entries. I have coded this fine. It will read tar, tar.gz and zip files recursively. Now the problem scenerio is for some archive entries inside tar files, the ...
1
vote
2answers
28 views
How to consume webservice using CURL command?
I am trying to consume webservices using unix CURL command but somehow I am getting request denied error.
I am trying to consume this webservice url-
...
1
vote
1answer
20 views
XSL not copying all templates on each record
I'm a newbie to XSL and I am writing a Unix script so I hope you can help me out. My issue:
I have an XML which I need to parse to TXT, I'm using xsltproc to parse it But in an XML containing only 1 ...
0
votes
1answer
20 views
shell script to reading from file and do depending on the pattern
Need advice on shell script to read the file and echo depending on the pattern
cat revs.txt
1
3
8:13
18:71
89
if x:x then echo "This is revs range"
else
echo " this is single rev"
1
vote
0answers
23 views
How can I make `find` find files in reverse chronological order? [migrated]
I want to find files in subdirectories sorted by timestamp (of creation), with most recent first.
I have looked at the man page but it seems to only seems to let you filter by timestamp rather than ...
0
votes
0answers
8 views
Sendto eror on Unix Domain sockets
I have an android app with a JNI code that uses sendto() to send a UDP packet to a unix domain socket
int result = sendto(socket, data, length, 0, (struct sockaddr*)&sa, salen);
This works well ...
0
votes
1answer
16 views
Basic calculator script in UNIX - Want to make error messages disappear if no variables are entered
Here is a basic script with getopt command and assigned variables.
If someone were to type in
MyScript -a
with no words or numbers added after the -a, then an error message would pop up! The same ...
0
votes
1answer
21 views
Redirecting error messages produced by an IF statement. UNIX Shell Scripting Basics
So I've made a very basic script that utilizes getopt and if statements.
So if I type:
sh MyScript -e h e
it will echo out:
he
if I type:
sh MyScript -o h e
it will echo out:
eh
It ...
0
votes
1answer
9 views
If I want to list multiple variables in one 'if' command in unix, how would I do it? [Beginner]
so I have a really basic question here which I'm sure any experienced user can answer quickly! I'm just not too sure what to search to find the answer!
So lets say I was write an 'if' command in a ...
-2
votes
0answers
13 views
Ubuntu won't let me change iptables [closed]
I'm trying to allow a port through my firewall with iptables(running Linux Ubuntu).
I typed this:
sudo iptables -A OUTPUT -p tcp --sport 27015 -j ACCEPT
and then it said:
iptables v1.4.12: can't ...
8
votes
3answers
83 views
Perl encrypting STDIN passwords
I'm producing a Perl module that provides an OO interface for a 3rd party API. I want to capture and store the user's password in an encrypted format before it is transmitted to the 3rd party API. The ...
0
votes
1answer
21 views
split a large matrix in sub file horizontally
I have a large matrix: around: 4G. I would like to split this large file into small sub files. To do this, I used the string:
split -b 500m my_matrix.txt output_
This large matrix results from ...
0
votes
1answer
10 views
Can the computer that I'm (p)ssh'ing into be showing different than the original $PATH under certain circumstances?
I'm using this tool called pssh to ssh into a number of hosts together
The syntax to use it is:
pssh [OPTIONS] command [...]
For example:
pssh -h hosts.txt uptime
Here hosts.txt is the file ...
1
vote
2answers
21 views
Random errors when using rexec
I have a very odd error when using rexec. The code is very simple, I am just calling rexec in a loop:
#include <stdio.h>
#include <errno.h>
#include <netdb.h>
int main() {
char ...
0
votes
3answers
18 views
How to concatenate files from different folders
I have a list of output_[0-293] folders containing a list of files. From each folder
I would like to concatenate files with the name: output_0.txt, output_1.txt, output_2.txt, ...output_293.txt.
Can ...
1
vote
1answer
41 views
Removing files - Silent failure issue
In a Unix environment, I have a bash script that removes some files:
rm -f foo bar* baz*
My problem: not always the wildcard returns any result. And as a result of that, I fail to remove even 'foo' ...
0
votes
0answers
49 views
Why interpreter path in first line of python script is truncated? [duplicate]
I have one test script which create virtual environment and run some test in that environment.
Now the problem is when it create virtual environment it give path of python interpreter created in ...
1
vote
2answers
29 views
How to get Difference in time data kept in two different files in Unix?
I Have Two files each with some 200K Timestamps in a single column. I want to find the difference between each rows(mapped one to one) in seconds.
For example:
One file has 2013-06-04 11:21:28 and ...
0
votes
2answers
30 views
Execution of korn shell
Any one has the idea of the below line:
path to file/filename.ksh help trunk help
Can any one explain the meaning of this what will be doing? I want to know why the last three words are used in the ...
0
votes
2answers
21 views
behaviour of unix process when a signal arrives and the process is already in signal handler?
I have a process which is already in signal handler , and called a process blocking call. What will happen if one more signal arrives for this process ?
0
votes
0answers
13 views
does anyone have script to download the XML from repository and FTP that to particular box
we generally do manual export of workflow in form of XML from SIT, does anyone have any shell scripts to make this process as a automation, a script to download the XML from repository and FTP that to ...
0
votes
0answers
16 views
Imitating a shared ssh session for scripts on Windows?
I have a remote machine where I need to start a background task which talks back to a local process over a tunneled port. The problem I'm having is that the process which is to run on my local machine ...
0
votes
2answers
34 views
Cron job every minute?
I have a cron job running that executes a PHP file which checks a MySQL database for a change. I have this script running every minute but it's very simply query.
Still, is running a cron job like ...
0
votes
1answer
26 views
Can you use pg_connect in PHP to use ONLY local unix-domain sockets?
Okay, this is something I've been banging my head on for a few weeks now, so just bear with me. When I set up my postgres database, I wanted to connect to it only through the local Unix socket. Just ...
2
votes
1answer
47 views
Empty regular expression in sed script
Found the following sed script to reverse characters in each line, from the famous "sed one liners", and I am not able to follow the following command in //D of the script
sed ...
0
votes
2answers
35 views
How to get original system command after overwriting it with a function?
I'm at a Hackathon right now so if someone would answer this soon, you'd be doing me a huge favor.
I've written a function called ls() in my .profile that looks like this:
ls() {
if(some ...
0
votes
1answer
30 views
Crontab job is not running for concrete values; but executes for relative time values
I am running a fresh install of Ubuntu 12.0.4 and I am trying to setup a non-system cron job.
I used the "sudo crontab -e" command and this is how the file looks:
0 5 * * * root ...
0
votes
1answer
35 views
process state in Unix
I need to understand what happens to a process in Unix when it calls the pause() function.
Considering a simple state diagram with three states: ready, run and wait. If my programm only prints its ...
0
votes
1answer
8 views
Permission denied executing shell_exec (PhantomJS)
I installed PhantomJS on my server and it's running great from the terminal. When I try to run form PHP using SHELL_EXEC, I get the following error:
phantomjs: Permission denied
I set the ...



