0
votes
1answer
51 views
What LD stand for on LD_LIBRARY_PATH variable on *unix?
I know that LD_LIBRARY_PATH is a environment variable where the linker will look for the shared library (which contains shared objects) to link with the executable code.
But what does the LD Stands …
0
votes
1answer
51 views
Linking with .so files (webkit)
Hi,
I'm trying to create a program that uses some of the code from WebKit/GTK+. Specifically, I want to load a string, use WebKit's parser to construct a DOM tree and then iterate over that tree.
…
1
vote
7answers
95 views
Looking for book on Bash scripting
I'd like to brush up on my knowledge of Shell scripting with Bash for a job interview Monday.
What would the preferred book be for someone with an existing knowledge looking to review the topic?
0
votes
3answers
23 views
Possible to svn export and include unversioned files?
I would like to export my code from the working svn copy while including all unversioned files. For example, there are uploaded images/config files etc, that I would like included in the export.
How …
0
votes
1answer
46 views
File modification time (seconds) on Unix
Hi there,
On Unix, is there a command to display a file's modification time, precise to the second?
On Linux this is easily done with a "stat -c %y", which returns something like 2009-11-27 …
0
votes
1answer
12 views
Setting a custom system date on the fly for PHP script
Hi,
We have a script that needs to function between two dates, so to test the script we need to change the UNIX system date to simulate the date conditions.
PROBLEM:
The problem is we have other …
0
votes
0answers
54 views
awk, mawk, nawk, gawk… WHAT? [closed]
Hi there!
I've just started learning awk and I'm a little confused about all those versions around. Is there any "version" which is found on all Unix-like systems? Like, you know, plain vi? Does the …
0
votes
2answers
15 views
ddd gets inactive when mouse is moved out of its window
Hi,
My ddd window doesnt take any keyboard input when my mouse cursor is moved out of the window. Although ddd window is still active, but it doesnt take any inputs. I will have to move my mouse …
0
votes
2answers
22 views
Executing an script with crontab returns 127 error code
I am executing a script manually on my UNIX system manually, it runs successfully and updated required records in ORACLE database. How ever when I exwcute the same script with crontab my process exits …
2
votes
3answers
47 views
shell script purpose of x in “x$VARIABLE”
I'm peeking through some shell scripts - what's the purpose of the x in the comarison shcu as
if [ "x$USER" != "x$RUN_AS_USER" ]; then
su - $RUN_AS_USER -c "$CATALINA_HOME/bin/startup.sh"
…
0
votes
0answers
18 views
Is there a standard permissions scheme for web server directories?
I have built many web sites and have used a few different ways of setting the permissions on my folders.
I would like to know if there is a definitive configuration for web server directories.
I …
1
vote
9answers
79 views
Remove first line in text file without allocating memory for entire text file
Hey all,
I have a very large text file and all I need to do is remove one single line from the top of the file. Ideally, it would be done in PHP, but any unix command would work fine. I'm thinking I …
1
vote
2answers
17 views
How to create installer for solaris
Hi, I have already createdrpm file for my application. It works fine for Fedora linux. also the same worked fine for linux mint. But Solaris does not support rpm. So how to create installer package …
1
vote
4answers
40 views
Script that will quit out every 5 minutes then renew itself where it left off
Hey all,
I've got a UNIX question... I have a PHP script that I run in the terminal that parses a bunch of images and puts them in the database. This script has already been written
Due to …
1
vote
9answers
128 views
Unix wizardry to get the binary content of a file as text?
I'm looking for an easy way to convert a simple binary file into a text-representation of its binary, where encoding doesn't matter. I know that the programmatic solution is straightforward, but I …
