Search Results

Search: Posts Made By: Dev_Dev
7,262
Posted By jim mcnamara
-1 means less than 24 hours old 1 means...
-1 means less than 24 hours old
1 means precisely 86400 * 24 seconds (one day) old
+1 more than one day old


#16-Jun-2012 to 25-Jun-2012
touch -t 201206160000 dummy1
touch -t 201206252359...
1,368
Posted By Corona688
Using a 'for' loop to do this is a useless use of...
Using a 'for' loop to do this is a useless use of cat (http://partmaps.org/era/unix/award.html) and useless use of backticks (http://partmaps.org/era/unix/award.html), precisely because of the reason...
2,120
Posted By zaxxon
There is a wonderful search function for this...
There is a wonderful search function for this forum and there is also a big search engine from Google which will show bazillions of pages that have something useful to say about crontabs.

There...
3,260
Posted By doctorfoo1
download and install an FTP/SFTP client. For SFTP...
download and install an FTP/SFTP client. For SFTP you will need OpenSSH installed.
not sure about windows 7, hopefully they have integrated a secure file transfer protocol, what ever that may be.
-x
1,491
Posted By bartus11
https://www.unix.com/302544795-post1.html
https://www.unix.com/302544795-post1.html
2,492
Posted By Scrutinizer
The first starts a new shell and executes the...
The first starts a new shell and executes the script in that shell. The second and third execute a script in the current shell (this is called "sourcing"). The first and second read a script from the...
23,904
Posted By ShawnD41
You may want to check out your sudoers...
You may want to check out your sudoers (/etc/sudoers) file. That would specify the rules for sudo on your system.
23,904
Posted By vbe
I will add the - sign there is so it executes the...
I will add the - sign there is so it executes the .profile of the user in order to have his environment... in other words without - you would just "be" oracle from then on but without his environment...
23,904
Posted By ctsgnb
If you are allowed to run : sudo su - oracle ...
If you are allowed to run :
sudo su - oracle
then it runs the command
su - oracle
with root privilege, so it allow you to switch to oracle user without having to provide the password of oracle...
21,197
Posted By pludi
That would be one of the few cases where ksh and...
That would be one of the few cases where ksh and bash aren't compatible, as ksh has a built-in print command, while bash doesn't. Use echo or printf instead.
7,560
Posted By fpmurphy
No, do not do that. If this is a script that you...
No, do not do that. If this is a script that you wish to truly run using the bash shell, use #!/bin/bash. The practice that arose in the Linux community of using #!/bin/sh to mean bash is simply a...
7,560
Posted By gary_w
In a nutshell, the first 2 characters happen to...
In a nutshell, the first 2 characters happen to be the ascii representation of the hex values 0x23 0x21 which is a "magic number" that the shell interpreter uses. When the interpreter sees the #!...
7,560
Posted By yazu
http://en.wikipedia.org/wiki/Shebang_(Unix)
http://en.wikipedia.org/wiki/Shebang_(Unix)
3,959
Posted By michaelrozar17
Try if the below on works. Or similarly you can...
Try if the below on works. Or similarly you can place the anonymous block inside file Test.sql and run as you tried in post# 1. Did you try this way..?
#!/bin/ksh
user="myUser"
passwd="werwe"...
2,587
Posted By Corona688
They're just warnings, not errors, since they...
They're just warnings, not errors, since they don't stop find from continuing. So just dump the error messages into the bit bucket:
find ... 2> /dev/null
Showing results 1 to 15 of 15

 
All times are GMT -4. The time now is 03:47 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy