Programming :: Closing Parenthesis Script - Two Missing
Aug 30, 2010
I have a file with several parentheses, both () and []. All of them should be closed, but apparently, one of them is open. In order to run a program, I need all of them to be closed... For example, if I write: ((bla (bla (bla)) I would have two parentheses missing. That's what I mean. But I have several parentheses in the file... it would take me ages to do it manually. Is there a way to check which parenthesis is open? can it be done?
View 5 Replies
ADVERTISEMENT
May 6, 2011
Is there any method for placing translations in parenthesis at first occurrence? I need something similar to the acronym package, but instead, storing translations and printing brackets only after the first occurrence.
E.g. (pseudo-code):
Results in:
Do you like to eat bananas (xiangjiao)? No I don't like to eat bananas.
View 4 Replies
View Related
Mar 24, 2011
In C++ language, we can do the following compound tests,
Code:
std::string a, b, c, d;
if ((a == "Yes" && b == "Yes" ) || (c == "Yes" && d == "Yes")) { ... }
In bash scripts, how can we do the parenthesis around compound tests?
Code:
if [ "$a" = "Yes" ] && [ "$b = "Yes" ] [ "$c" = "Yes" ] && [ "$d" = "Yes" ]; then
...
fi
View 4 Replies
View Related
Aug 4, 2010
Delete this with maximum prejudice, mods.
View 1 Replies
View Related
Mar 13, 2011
As we know, every process has a table with a file descriptor table, in which each entry contains a file pointer pointing to the corresponding file table which contains a v-node pointer pointing to the v-node table.
When closing a file descriptor, are all these data structure deleted?
View 2 Replies
View Related
Nov 30, 2010
I have written a server application which has select for both incoming new client connection requests and incoming data from client. I am able to process incoming connection requests and client data.
For example, server has 8 clients connected to it. If client 3 disconnects from server, how will server come to know this client has disconnected and to close its client socket fd gracefully? Does server's select get data on that client socket fd as 'close' data or any error code in recv() function that notifies server to close this client socket fd? Also if client disconnects abruptly without sending close request to server, how should server handle this? Does server get "EPIPE" error?
View 1 Replies
View Related
Apr 15, 2011
I have a pthread waiting forever on a POSIX message queue and then call mq_close and mq_unlink on the POSIX message queue. I've found that the pthread never wakes up from it's call to mq_receive and remains blocked indefinitely. Is there a way to wakeup all pthreads blocked on a POSIX message queue after calling mq_close/mq_unlink? The goal is to include error handling during message queue deletion to avoid leaving any pthreads blocked forever.
View 2 Replies
View Related
Jan 2, 2011
i was wondering if there is away to avoid application from closing if a specific library not found? for example: if my application uses libPng and it wasn't found on the system running my app (binary and not source), is there anyway to just disable the part that uses png from my application?
View 14 Replies
View Related
Jun 8, 2010
I have filenames like such: abc (e).doc And I want to rename them to abc.doc I have a directory full of files names like this. How can i do this using the sed command? I have looked online for about 2-3 hours now and am frustrated that I can't find an answer.
View 11 Replies
View Related
Dec 5, 2010
When I see a typical reference to a Unix manual, it often follows by a number surrounded by parentheses. For instance syslog.conf (5). I am sure this means something, but Googling it is impossible.
View 4 Replies
View Related
Jul 9, 2010
I am unable to write a simple Makefile. Though I know the concept am facing this error:
Makefile:2: *** missing separator (did you mean TAB instead of 8 spaces?). Stop.
Should I give a tab or spaces not able to continue.
View 5 Replies
View Related
Feb 16, 2011
What is the problem? I receive this message (see in red) when i running this script (below) on bash script file:
error received:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 70 0 70 0 0 321 0 --:--:-- --:--:-- --:--:-- 0
IMAG_DOS.ZIP
[code]....
View 1 Replies
View Related
Oct 19, 2010
Need to make sure a security line is added in to every webpage on a site, trying to find out how to list only the filenames of the pages that are missing the text. awk or grep? o what I want is to list all files NOT containing the word 'securemasthead'
View 2 Replies
View Related
Jun 16, 2011
I have an interesting problem, sed '/pattern/{n;p;}' file, doesn't seem to be catching all of the matches in my file. As an example of this see below.test:
Turn
Turn
Turn
[code]....
View 5 Replies
View Related
Jul 9, 2010
OpenSuse 11.2 (64 bit)
GDB 6.8.91.20090930-2.4
I ran GDB on a program and am receiving following errors,
Code:
anisha@linux-uitj:~/junk> g++ -g jk.cpp
anisha@linux-uitj:~/junk> gdb a.out
GNU gdb (GDB) SUSE (6.8.91.20090930-2.4)
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later [URL]
This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-suse-linux".
For bug reporting instructions, please see: [URL] ...
Reading symbols from /home/anisha/junk/a.out...done.
(gdb) b readline
Breakpoint 1 at 0x400b90: file jk.cpp, line 19.
(gdb) r
Starting program: /home/anisha/junk/a.out
Missing separate debuginfo for /lib64/ld-linux-x86-64.so.2
Try: zypper install -C "debuginfo(build-id)=591af1afa33f255704fb6a60859b93d00e205302"
Missing separate debuginfo for /usr/lib64/libstdc++.so.6
Try: zypper install -C "debuginfo(build-id)=62220ad5c8941afb5d332c0c47d32f8beec8ac50"
Missing separate debuginfo for /lib64/libm.so.6
Try: zypper install -C "debuginfo(build-id)=57fc1891d8d9f419fb8c7fc06a8285563b53a47e"
Missing separate debuginfo for /lib64/libgcc_s.so.1
Try: zypper install -C "debuginfo(build-id)=0206e11fa8ca0db0633073adcbf1349a7871e1dc"
Missing separate debuginfo for /lib64/libc.so.6
Try: zypper install -C "debuginfo(build-id)=c5a3dfd66bf61fcdec9bc22153b2fbd0d6697960"
can't open input file (null)
Program exited with code 01.
(gdb)
View 1 Replies
View Related
Feb 10, 2010
I want to compile the the source code given in a well known unix programming book(stevens) .I downloaded the codes but unable to build it ,giving me an errorerror: stropts.h: No such file or directoryI don't know what to do....I am using fedora 11 latest gcc in the system.
I also try to include the search path which include a file -I./usr/include/xulrunner-sdk-1.9.1/system_wrappers but itI open the header file and the definition is there #include_next<strops.h>so ultimately there is not the original file
View 5 Replies
View Related
Nov 4, 2010
I am using an imx27 and have a timer set up for 100 ms and a loop to count the pulses while the timer has not expired. I get about 90 % reliable results but every once in a while i get one that is out to lunch. I am reading in a signal that is about 500khz and counting on an transition. I usually get around 85k count. But i will randomly get a 50k count.
View 3 Replies
View Related
May 11, 2010
When I close the lid on my Dell Mini 9 (Ubuntu 10.04 UNR) the sysgtem freezes. Is there anything I can do to prevent this? That didn't happen with 9.04 UNR.
View 7 Replies
View Related
May 18, 2011
if i shut down my pc and it tells me its still syncing so i shutdown anyway.
Will it carry on when i boot up?
View 1 Replies
View Related
Jun 17, 2010
Several times now my PC with Ubuntu 10.04 LTS installed wont close down. I click on all the appropriate buttons but the system doesn't shut down. I have to press the on / off button on the computer to end my session.
View 6 Replies
View Related
Aug 21, 2010
I have been using Ubuntu 10.04 LTS for several months and recently the system has stopped closing down cleanly. It starts okay and runs just fine, but when I come to closing down it doesn't do anything after I've clicked on the shut down button. The same happens with the restart button. I have been closing the system by pressing the power button on the front of my tower. I have no idea as to why it won't close ... I haven't installed any extra software, so I guess it's a system problem. Closing down by pressing the power button cannot be doing the OS any good, so I could do with a fix ASAP on this one.
View 8 Replies
View Related
Jul 6, 2010
If I close IceDove and then start it again, I get the message that it's already running. Although the GUI has gone, icedove-bin is still running.
View 4 Replies
View Related
Aug 11, 2010
I am running squeeze for a couple of months now
And suddenly my CD tray keeps opening and closing I believe it started after the latest upgrade (I dont remember which packages aptitude picked up)
So is this a bug in squeeze or a bug in my CD tray
View 2 Replies
View Related
Oct 17, 2010
I'm using squeeze as desktop on C2Duo 3Gb ram, nvidia 9400 512 Mb. I've installed proprietary driver and configured xorg long ago, but now very often I see artefacts on desktop after i close a programm, i.e. as if some of the parts of window or text still remain on the desktop after i close the window. I use gnome as my de, dunno what's happened.
View 1 Replies
View Related
Oct 4, 2010
Since my laptop went back to DELL to be repaired closing the lid does nothing. It used to put the laptop into suspend. I even tried on my windows partition and closing it still does nothing. I suspected that the switch(?) that controls this is not sending any data to the laptop - is there away to see if any input is being received when the lid is closed? Or does anyone have any other thoughts on what might be at fault?
View 3 Replies
View Related
Feb 12, 2010
Is there a way to stop conky from closing when I click on it? I have a few set up as a system monitor bar on the desktop, and I'd like to anchor them there from accidental clicking so I don't have to restart my script.
View 2 Replies
View Related
May 5, 2010
I have some screen questions. First, can you give screens names (such as whatever app you're screening), and second, how do you exit from a screen without closing the app (ie exit screen back to the command prompt, do your thing, then screen -r it)?
View 3 Replies
View Related
May 23, 2010
This is probably a stupid question, but I haven't been able to figure it out on my own.
If I run Amarok and then click on Amarok -> Quit, the main Amarok window disappears but a tray icon remains:
How do I open Amarok again?
Choosing Amarok from the main menu does nothing. Running amarok in the terminal produces:
multi@aux:~$ amarok
Amarok is already running!
View 7 Replies
View Related
Nov 13, 2010
I recently noticed my RAM problem. When I start any application it increases RAM usage but even after I close it RAM usage doesn't go down. Instead when I restart that application RAM usage goes up again. Using ubuntu 10.10
View 6 Replies
View Related
Dec 28, 2010
how could I can stop and close all program for no activity (when screensaver is activating, or after 1 minute of no activity on computer)
I want to use Ubuntu for public free (no password and no limit) and want to close program if somebody leave open firefox after 1 minute of no activity so it will back desktop page.
View 1 Replies
View Related