10 More Discussions You Might Find Interesting
1. Programming
(Apologies for any typos.)
OSX 10.12.3 AND Windows 10.
This is for the serious Python experts on at least 3.5.x and above...
In script format sys.stdout.write() AND sys.stderr.write() seems to work correctly.
Have I found a serious bug in the interactive sys.stdout.write() AND... (2 Replies)
Discussion started by: wisecracker
2 Replies
2. Shell Programming and Scripting
Hi All,
I need the answer of below question?
1) How to write multiple cronjobs in shellscript? Is there any way or we cant write in shellscript...
Regards,
Priyanka (2 Replies)
Discussion started by: pspriyanka
2 Replies
3. Shell Programming and Scripting
I'm using the below one..
#!/bin/ksh
File=$3
if ; then
echo "Script"
elif ] ;then
echo "Passed k or f option"
else "Please check the Input passed"
fi
Command line argument is "k" or -f and file is exist then... (3 Replies)
Discussion started by: Roozo
3 Replies
4. Shell Programming and Scripting
Hi ALL
I have a script where in i need to check for several values in if conditons but when i execute the script it throws error such as "TOO MANY ARGUMENTS"
if
then
msg="BM VAR Issue :: bmaRequestVAR=$bmaRequestVAR , nltBMVAR=$nltBMVAR , bmaResponseVAR=$bmaResponseVAR ,... (10 Replies)
Discussion started by: nikhil jain
10 Replies
5. Shell Programming and Scripting
I have this IF working fine, testing if a char is a digit:
if ; then
_VALUE=$_VALUE$_CHAR
else
_ISDIGIT="false"
fi
Then I add a second condition to test if the char is either a digit or a *
if ]; then
_VALUE=$_VALUE$_CHAR
... (11 Replies)
Discussion started by: Flavius
11 Replies
6. Shell Programming and Scripting
Currently this is what I am trying
while || && ]; do
I want to continue if the first condition or both the second and third are true but I am getting a too many arguments error.
Can someone help me out? (5 Replies)
Discussion started by: whdr02
5 Replies
7. IP Networking
Hi,
We have smb client running on two of the linux boxes and smb server on another linux system. During a backup operation which uses smb, read of a file was allowed while write to the same file was going on.Also simultaneous writes to the same file were allowed.Following are the settings in the... (1 Reply)
Discussion started by: swatidas11
1 Replies
8. Shell Programming and Scripting
./script 89
The script will extract the last digit of the input parameter. example, that is 4. This will be compared to the last digit of the current day of the month ( like day 14; that is 4). A message will displayed on the screen indicating if the digits are the same or not. (1 Reply)
Discussion started by: singh is king
1 Replies
9. UNIX for Dummies Questions & Answers
Hello,
I have a file as follows:
col no:1 2 3 4 5 6 7 8 9 10 11
a 4 226 226 ch:95024048-95027592, 1y224 of 3545 223 224 ident
b 53 235 235 ch:148398-148401255, 1y184 of 3187 180 186 ident
awk... (3 Replies)
Discussion started by: dr_sabz
3 Replies
10. Shell Programming and Scripting
I need to find all the files that have group Read or Write permission or files that have user write permission.
This is what I have so far:
find . -exec ls -l {} \; | awk '/-...rw..w./ {print $1 " " $3 " " $4 " " $9}'
It shows me all files where group read = true, group write = true... (5 Replies)
Discussion started by: shunter63
5 Replies