active questions tagged unix - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T13:44:48Zhttp://stackoverflow.com/feeds/tag/unixhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1818016/what-is-the-use-of-tnsadmin-variable-in-oracle0What is the use of TNS_ADMIN variable in Oracle?Sachin Chourasiya2009-11-30T05:43:43Z2009-11-30T12:11:05Z
<p>Hi All,</p>
<p>Please tell me what is the use of TNS_ADMIN parameter in Oracle? I am working on Unix using oracle database. </p>
<p>Is this parameter is required to locate the sqlplus. I am executing a script in which a update query is executed on Oracle Database.</p>
<p>The script fails with 127 error code when executed with crontab. </p>
<p>The script contents I suspect (eval) failing are </p>
<pre><code>----------
cmd='sqlplus ${ORALOGIN} < SQLS
----------
eval $cmd
</code></pre>
http://stackoverflow.com/questions/1819078/knowing-the-availability-of-variables-in-crontab0Knowing the availability of variables in crontabSachin Chourasiya2009-11-30T10:46:13Z2009-11-30T10:56:56Z
<p>What all variables BY DEFAULT are available if a script is executed by the crontab on UNIX Are .profile and oracle.env executed when the cron job is executed?</p>
http://stackoverflow.com/questions/1815688/how-to-use-ccache-with-cmake1How to Use CCache with CMake?Amit Kumar2009-11-29T14:36:39Z2009-11-30T10:25:52Z
<p>I would like to do the following: If CCache is present in PATH, use "ccache g++" for compilation, else use g++. I tried writing a small my-cmake script containing </p>
<pre><code> CC="ccache gcc" CXX="ccache g++" cmake $*
</code></pre>
<p>but it does not seem to work (running make still does not use ccache; I checked this using CMAKE_VERBOSE_MAKEFILE on). </p>
<p><strong>Update:</strong></p>
<p>As per <a href="http://www.sand-labs.org/owb/wiki/CompilationGuide#Howtospeedupcompilationwithccache" rel="nofollow">this link</a> I tried changing my script to</p>
<pre><code> cmake -D CMAKE_CXX_COMPILER="ccache" -D CMAKE_CXX_COMPILER_ARG1="g++" -D CMAKE_C_COMPILER="ccache" -D CMAKE_C_COMPILER_ARG1="gcc" $*
</code></pre>
<p>but cmake bails out complaining that a test failed on using the compiler ccache (which can be expected).</p>
http://stackoverflow.com/questions/1818103/does-sqlplus-uses-tnsadmin-variable0Does sqlplus uses TNS_ADMIN variable?Sachin Chourasiya2009-11-30T06:15:03Z2009-11-30T07:02:09Z
<p>Please tell me does sqlplus uses TNS_ADMIN variable on UNIX and AIX? Can we able to locate sqlplus if this variable could not be located?</p>
http://stackoverflow.com/questions/1030304/tar-a-specific-folder-2Tar a specific folder [closed]Susmi2009-06-23T02:02:21Z2009-11-29T22:26:06Z
<p>What is the command in unix to do tar on a specific folder.</p>
http://stackoverflow.com/questions/453300/to-what-extent-can-version-control-help-in-system-administration2To what extent can Version Control help in system administration?Brent.Longborough2009-01-17T13:16:42Z2009-11-29T19:19:50Z
<p>I'm currently tinkering at an OpenBSD system with a view to building myself a firewall and some other bits and bobs.</p>
<p>As this is fairly experimental (I'm an OpenBSD n00b, and I've already trashed my system 3 or 4 times), I wonder what experience others have of making part or all of the file system (I'm thinking in particular of /etc) a working copy of some VCS or other.</p>
<ul>
<li><p>Is this a good idea?</p></li>
<li><p>I'm particularly interested in which VCS people have used for this. I'm considering subversion, bazaar, and git; this won't be a shared repository, so I'm perhaps more interested in the basic vcs functionality than the distributed-or-not argument.</p></li>
<li><p>I'd also like to hear about imagined or actual pitfalls people have found. I can imagine the preservation of file ownership and permissions needs careful thought!</p></li>
<li><p>And, of course, any alternative approaches not involving VCS</p></li>
</ul>
http://stackoverflow.com/questions/1672700/how-to-see-the-version-of-the-tap-file0How to see the version of the TAP filejohn2009-11-04T09:47:23Z2009-11-29T16:38:53Z
<p>this is a telecom based query.
we receive TAP files from the clearing house.
i want see on unix which version of TAP does it belong.
how can i do it.Isthere any tool to find the TAP file version?</p>
http://stackoverflow.com/questions/1308484/cron-job-stderr-to-email-and-log-file0Cron job stderr to email AND log file?Steph2009-08-20T20:02:42Z2009-11-29T15:34:26Z
<p>I have a cron job:</p>
<pre><code>$SP_s/StartDailyS1.sh >$LP_s/MirrorLogS1.txt
</code></pre>
<p>Where <code>SP_s</code> is the path to the script and <code>LP_s</code> is the path for the log file. This sends stdout to the log file and stderr to my email. </p>
<p>How do I?:<br />
1) send both stdout AND stderr to the logfile,<br />
2) AND send stderr to email</p>
<p>or to put it another way: stderr to both the logfile and the email, and stdout only to the logfile.</p>
<p>UPDATE:
None of the answers I've gotten so far either follow the criteria I set out or seem suited to a CRON job.</p>
<p>I saw this, which is intended to "send the STDOUT and STDERR from a command to one file, and then just STDERR to another file" (posted by zazzybob on unix.com), which seems close to what I want to do and I was wondering if it would inspire someone more clever than I: </p>
<pre><code>(( my_command 3>&1 1>&2 2>&3 ) | tee error_only.log ) > all.log 2>&1
</code></pre>
<p>I want cron to send STDERR to email rather than 'another file'.</p>
http://stackoverflow.com/questions/1523715/finding-the-public-ip-address-in-a-shell-script0Finding the Public IP address in a shell script [closed]shantanuo2009-10-06T05:16:23Z2009-11-29T05:25:15Z
<p>I can find my IP address using ifconfig or hostname -i command.</p>
<p>But how do I find my Public IP?</p>
<p>(I have a static public IP but I want to find it out using unix command)</p>
http://stackoverflow.com/questions/1814459/what-ld-stand-for-on-ldlibrarypath-variable-on-unix0What LD stand for on LD_LIBRARY_PATH variable on *unix?Marcos Roriz2009-11-29T02:33:51Z2009-11-29T03:33:01Z
<p>I know that <code>LD_LIBRARY_PATH</code> is a environment variable where the linker will look for the shared library (which contains shared objects) to link with the executable code.</p>
<p>But what does the LD Stands for, is it for Load? or List Directory?</p>
http://stackoverflow.com/questions/1443229/what-is-difference-between-unix-and-linux0What is difference between unix and linux [closed]Xinus2009-09-18T08:31:45Z2009-11-29T03:00:51Z
<p>I want to know what is actual difference between Unix and Linux.</p>
<ul>
<li>Do they share a same kernel ?</li>
<li>Is Linux built over Unix </li>
<li>Can programs written for Linux work over Unix and vice versa</li>
</ul>
http://stackoverflow.com/questions/1492701/is-it-possible-to-get-ntpdate-working-behind-a-proxy0Is it possible to get ntpdate working behind a proxy? [closed]Benoit Guerout2009-09-29T13:49:54Z2009-11-29T02:57:39Z
<p>ntpdate command seems to ignore http_proxy ...</p>
http://stackoverflow.com/questions/1379396/korn-shell-date-validation-in-script0Korn Shell - Date validation in scriptjjclarkson2009-09-04T13:49:18Z2009-11-29T01:39:29Z
<p>I'm trying to do validation of a date entered as numbers only. (e.g. 09042009 as 09/04/2009)
The code now just checks the length of the date. </p>
<p>How would I validate not only length of the date entry but also that it is a real date? What would be the syntax for combining tests and regular expression?</p>
<p><strong>Code as it exists now:</strong></p>
<pre><code>echo "Please enter the date you want (e.g. 07142009)"
level=1;
while [ $level -gt 0 ]; do
read date;
dateleng=`expr length $date`
if [ dateleng -ne 8 ]; then
echo "Bad date, please re-enter";
else level=0;
fi
done
</code></pre>
<p>This is in KSH on an old Unix system. </p>
http://stackoverflow.com/questions/1810716/looking-for-book-on-bash-scripting1Looking for book on Bash scriptingMike2009-11-27T21:38:46Z2009-11-28T20:49:17Z
<p>I'd like to brush up on my knowledge of Shell scripting with Bash for a job interview Monday. </p>
<p>What would the preferred book be for someone with an existing knowledge looking to review the topic?</p>
http://stackoverflow.com/questions/1461298/how-can-i-make-the-list-of-letters-from-a-to-z-and-iterate-through-them-in-the-sh0How can I make the list of letters from A to Z and iterate through them in the shell?Andrei 2009-09-22T17:01:42Z2009-11-28T06:46:10Z
<p>Say I want to iterate from letter A to letter Z in csh shell. How do I succinctly do that?</p>
<p>In bash I would do something like </p>
<pre><code>for i in 'A B C ...Z'; do echo $i; done
</code></pre>
<p>The point is I don't want to write A through Z, I want something like </p>
<pre><code>[A-Z]
</code></pre>
<p>Can you suggest a one line suggestion in AWK or Perl?</p>
http://stackoverflow.com/questions/1811297/linking-with-so-files-webkit0Linking with .so files (webkit)John Cosgrove2009-11-28T01:53:32Z2009-11-28T02:39:12Z
<p>Hi,</p>
<p>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. </p>
<p>I'm trying to use a class called HTMLDocument. WebKit/GTK+ doesn't expose this as part of its API and I'm running into some trouble linking against it. </p>
<p>I'm able to build WebKit/GTK+ normally, which gives me a file called: libwebkit-1.0.so. My program is:</p>
<pre><code>#include <iostream>
#include <WebCore/config.h>
#include <WebCore/html/HTMLDocument.h>
using namespace WebCore;
int main() {
String title = "test";
RefPtr<HTMLDocument> d = HTMLDocument::create(0);
d->open();
d->write("<!doctype html><html><head><title>" + title + "</title></head><body></body></html>");
}
</code></pre>
<p>This compiles fine (I'm using the same include directives used by webkit to build), but results in linking errors. </p>
<pre><code>...test_doc.cpp:18: undefined reference to `WebCore::String::String(char const*)'
...test_doc.cpp:21: undefined reference to WebCore::Document::open(WebCore::Document*)'
...(similar for every function I use)
</code></pre>
<p>If I run:</p>
<pre><code>nm -C .libs/libwebkit-1.0.so | grep 'WebCore::Document::open'
</code></pre>
<p>I see:</p>
<pre><code>003b1830 T WebCore::Document::open(WebCore::Document*)
</code></pre>
<p>which seems to indicate that the function is available. I have a reasonable amount of C++ experience, but not much experience with linking files under Linux. </p>
<p>I'm not expecting this exact problem to be solved, but I'm hoping someone can correct me if I have conceptual problems. My main question is why I see "undefined reference" errors when I'm linking with an .so file that lists that function as being defined. Is another file or build step needed?</p>
<p>Thank you very much. </p>
<p>Using:
Ubuntu 9.10
g++ 4.4.1</p>
<p>g++ is invoked with:</p>
<pre><code>g++ --debug -DHAVE_CONFIG_H -I. `pkg-config --cflags libsoup-2.4` \
-DBUILDING_CAIRO__=1 -DBUILDING_GTK__=1 -DWTF_CHANGES -DWTF_USE_ICU_UNICODE=1 \
-DNDEBUG -I./WebCore -I./WebCore/accessibility -I./WebCore/bindings/js \
-I./WebCore/bridge -I./WebCore/bridge/c -I./WebCore/css -I./WebCore/dom \
...many more webkit include directories...
-DDATA_DIR=\"/usr/local/share\" \
test_doc.cpp -o test_doc.out \
./webkit-1.1.15.3/.libs/libwebkit-1.0.so
</code></pre>
<p>(I get the same result with -L/path/to/lib -lwebkit-1.0)</p>
http://stackoverflow.com/questions/1733692/how-to-use-sed-awk-or-gawk-to-print-only-what-is-matched1how to use sed, awk, or gawk to print only what is matched?Stéphane2009-11-14T08:34:14Z2009-11-28T01:58:22Z
<p>I see lots of examples and man pages on how to do things like search-and-replace using sed, awk, or gawk.</p>
<p>But in my case, I have a regular expression that I want to run against a text file to extract a specific value. I don't want to do search-and-replace. This is being called from bash. Let's use an example:</p>
<p>Example regular expression:</p>
<pre><code>.*abc([0-9]+)xyz.*
</code></pre>
<p>Example input file:</p>
<pre><code>a
b
c
abc12345xyz
a
b
c
</code></pre>
<p>As simple as this sounds, I cannot figure out how to call sed/awk/gawk correctly. What I was hoping to do, is from within my bash script have:</p>
<pre><code>myvalue=$( sed <...something...> input.txt )
</code></pre>
<p>Things I've tried include:</p>
<pre><code>sed -e 's/.*([0-9]).*/\\1/g' example.txt # extracts the entire input file
sed -n 's/.*([0-9]).*/\\1/g' example.txt # extracts nothing
</code></pre>
http://stackoverflow.com/questions/1810491/possible-to-svn-export-and-include-unversioned-files0Possible to svn export and include unversioned files?1nsane2009-11-27T20:13:19Z2009-11-27T20:52:23Z
<p>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. </p>
<p>How can I achieve this?</p>
http://stackoverflow.com/questions/1673068/how-to-find-directories-with-the-name-of-specific-length0How to find directories with the name of specific lengthaltern2009-11-04T10:59:06Z2009-11-27T14:52:22Z
<p>How could I find directories with the name of specific length?
For example, I have bunch of directories which have length of the name equal to 33 chars ('a92e8cc611fdebcca3cf2fc8dc02c918', 'c442fb3f46d6c8bd17d27245290a9512' and so on).
Does <code>find</code> utility accepts condition in form of the 'wc -c'? Or maybe some other utilities should be piped together?</p>
http://stackoverflow.com/questions/174119/why-do-shell-script-comparisons-often-use-xvar-xyes6Why do shell script comparisons often use x$VAR = xyes?jonner2008-10-06T12:50:21Z2009-11-27T14:12:14Z
<p>I see this often in the build scripts of projects that use autotools (autoconf, automake). When somebody wants to check the value of a shell variable, they frequently use this idiom:</p>
<pre><code>if test "x$SHELL_VAR" = "xyes"; then
...
</code></pre>
<p>What is the advantage to this over simply checking the value like this:</p>
<pre><code>if test $SHELL_VAR = "yes"; then
...
</code></pre>
<p>I figure there must be some reason that I see this so often, but I can't figure out what it is.</p>
http://stackoverflow.com/questions/1807540/ddd-gets-inactive-when-mouse-is-moved-out-of-its-window0ddd gets inactive when mouse is moved out of its windowMnshSnghl2009-11-27T08:58:26Z2009-11-27T11:24:20Z
<p>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 over its window to make it work again. Is there a way to configure it in a way that it takes the input no matter where the mouse pointer is, just like any other X window, xterm for example.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1808039/file-modification-time-seconds-on-unix0File modification time (seconds) on UnixExpertNoob12009-11-27T10:47:53Z2009-11-27T11:09:33Z
<p>Hi there,</p>
<p>On Unix, is there a command to display a file's modification time, precise to the second?</p>
<p>On Linux this is easily done with a "stat -c %y", which returns something like <code>2009-11-27 11:36:06.000000000 +0100</code>. I found no equivalent on Unix.</p>
http://stackoverflow.com/questions/1807821/setting-a-custom-system-date-on-the-fly-for-php-script0Setting a custom system date on the fly for PHP scriptTom2009-11-27T10:05:08Z2009-11-27T10:11:24Z
<p>Hi,</p>
<p>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.</p>
<p><strong>PROBLEM</strong>:
The problem is we have other systems running on the same server so we can't just change the UNIX system date.</p>
<p><strong>QUESTION</strong>:
Is there a way to set the system date on the fly within PHP, for example using ini_set or another method?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1807755/awk-mawk-nawk-gawk-what0awk, mawk, nawk, gawk... WHAT? [closed]Trollhorn2009-11-27T09:49:47Z2009-11-27T09:49:47Z
<p>Hi there!</p>
<p>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 standard awk support the -F option?</p>
<p>Thx, Oliver</p>
http://stackoverflow.com/questions/245698/list-files-recursively-in-linux-with-path-relative-to-the-current-directory6List files recursively in linux with path relative to the current directoryDarryl Hein2008-10-29T03:28:06Z2009-11-27T09:48:16Z
<p>This is similar to <a href="http://stackoverflow.com/questions/105212/linux-recursively-list-all-files-in-a-directory-including-files-in-symlink-dire">this question</a>, but I want to include the path relative to the current directory in unix. If can do the following:</p>
<pre><code>ls -LR | grep .txt
</code></pre>
<p>But it doesn't include the full paths. For example, I have the follow dir structure:</p>
<pre><code>test1/file.txt
test2/file1.txt
test2/file2.txt
</code></pre>
<p>The code above will return:</p>
<pre><code>file.txt
file1.txt
file2.txt
</code></pre>
<p>How can I get it to include the paths relative to the current directory using standard nix commands?</p>
http://stackoverflow.com/questions/1807508/executing-an-script-with-crontab-returns-127-error-code0Executing an script with crontab returns 127 error codeSachin Chourasiya2009-11-27T08:50:55Z2009-11-27T09:17:09Z
<p>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 with the error code 127.</p>
<p>On analysing further, I got there is some problem in these statements.</p>
<p><hr></p>
<p>LOGFILE=sachin
ORALOGIN=abc/abc@abcd</p>
<h2>cmd='sqlplus ${ORALOGIN} < SQLS >> ${SVC_HOME}/LOGFILES/${LOGFILE}.<code>date +%Y-%m-%d</code>';</h2>
<p>eval $cmd</p>
<p>Please suggest a solution</p>
http://stackoverflow.com/questions/1805663/shell-script-purpose-of-x-in-xvariable2shell script purpose of x in "x$VARIABLE" leeeroy2009-11-26T21:13:00Z2009-11-26T22:23:13Z
<p>I'm peeking through some shell scripts - what's the purpose of the x in the comarison shcu as</p>
<pre><code> if [ "x$USER" != "x$RUN_AS_USER" ]; then
su - $RUN_AS_USER -c "$CATALINA_HOME/bin/startup.sh"
else
$CATALINA_HOME/bin/startup.sh
fi
</code></pre>
http://stackoverflow.com/questions/747894/iis-web-service-calling-com-dll-that-needs-to-access-a-unix-file-share0IIS Web Service calling COM dll that needs to access a unix file shareiancgood2009-04-14T14:35:10Z2009-11-26T20:00:08Z
<p>We have a web service that uses COM to talk to some DLLs. The data files that the DLL functions rely on are on a unix share, and we must specify the data file location when initializing the COM calls. We have installed SFU 3.5 on our Windows Server 2003 server. We can't use a mapped drive because IIS is running as a service (or can we?). Using UNC doesn't seem to work either: As a logged in user, it fails the first time you enter the location, and then works. I don't know how to test it from the IIS perspective, as all we're getting from the DLL is an 'Invalid data file location' error. The unix share is open [no user/password required]. </p>
<p>Perhaps the problem isn't with IIS at all, but rather the DLLs have to access to the UNC or mapped drive? After all, it is the DLL that actually accesses the data files, not IIS or the web service executable. </p>
<p>I know very little about COM, DCOM, COM+. Pulling up Component Services, I can't find the COM objects we are using. [But I can find them using the MS OLEVIEW under 'Automation Objects'].</p>
<p>What are my options here?</p>
http://stackoverflow.com/questions/1804102/is-there-a-standard-permissions-scheme-for-web-server-directories0Is there a standard permissions scheme for web server directories?Jon Winstanley2009-11-26T14:47:56Z2009-11-26T16:53:00Z
<p>I have built many web sites and have used a few different ways of setting the permissions on my folders. </p>
<p>I would like to know if there is a definitive configuration for web server directories.</p>
<p>I have listed the folders which I consider to be standard in a typical web site directory, what is the permssion setting required for each one? Is there a </p>
<ul>
<li>/app</li>
<li>/lib</li>
<li>/log</li>
<li>/cache</li>
<li>/config</li>
<li>/public_html
<ul>
<li>/images</li>
<li>/css</li>
<li>/js</li>
<li>/uploads</li>
<li>.htaccess</li>
<li>index.htm</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/573623/powershell-vs-unix-shells20PowerShell vs. Unix ShellsAndy White2009-02-21T19:42:06Z2009-11-26T13:07:19Z
<p>I'm debating whether I should learn PowerShell, or just stick with Cygwin/Perl Scripts/Unix Shell scripts, etc.</p>
<p>The benefit of PowerShell would be that the scripts could be more easily used by teammates that don't have cygwin; however, I don't know if I'd really be writing that many general purpose scripts, or if people would even use them.</p>
<p>Unix scripting is so powerful, does PowerShell come close enough to warrant switching over?</p>
<p>EDIT:
Here are some of the specific things (or equivalents) I would be looking for in PowerShell:</p>
<ul>
<li>grep</li>
<li>sort</li>
<li>uniq</li>
<li>Perl (how close does PowerShell come to Perl capabilities?)</li>
<li>awk</li>
<li>sed</li>
<li>file (the command that gives file info)</li>
<li>etc.</li>
</ul>