Search Results

Search: Posts Made By: techy1
7,062
Posted By MadeInGermany
if [ -z "$EXP" ] || [ "$EXP" = "none" ] ...
if [ -z "$EXP" ] || [ "$EXP" = "none" ]
then
Forum: AIX 12-18-2013
4,861
Posted By zaxxon
Thatīs pretty normal. Read this: IBM CPU...
Thatīs pretty normal. Read this:
IBM CPU Utilization for the wait KPROC - United States (http://www-01.ibm.com/support/docview.wss?uid=isg3T1000502)
7,792
Posted By Scrutinizer
Try: if [[ ! -f "$file1" && ! -f "$file2" ]];...
Try:
if [[ ! -f "$file1" && ! -f "$file2" ]]; then

or reverse the condition
if [[ -f "$file1" || -f "$file2" ]]; then
echo FILE ok
else
...
7,792
Posted By Yoda
#!/bin/bash FILE1="path/to/file1" ...
#!/bin/bash

FILE1="path/to/file1"
FILE2="path/to/file2"

[ -f "$FILE1" ] && printf "%s found\n" "$FILE1"
[ -f "$FILE2" ] && printf "%s found\n" "$FILE2"

if [ ! -f "$FILE1" ] && [ ! -f...
981
Posted By Yoda
awk '/^[0-9]/&&!/:/{ printf "%.4f\n", $0/256; } '...
awk '/^[0-9]/&&!/:/{ printf "%.4f\n", $0/256; } ' freemem > output_file
Forum: AIX 12-13-2012
2,395
Posted By kah00na
The "Max" you are referring to is the maximum...
The "Max" you are referring to is the maximum amount of CPU the LPAR can be entitled to. Since your LPAR is uncapped, the maximum amount of CPU the LPAR can consume is the number of virtual...
Showing results 1 to 6 of 6

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