Search Results

Search: Posts Made By: Shoeless_Mike
12,556
Posted By Shoeless_Mike
Dude I am glad to have A way to do it - thanks! ...
Dude I am glad to have A way to do it - thanks!

MM
12,556
Posted By Shoeless_Mike
Combining two variables in ksh
I can't believe I can't figure this out... given this code:


CARS_DATA_LIST=`cat /tmp/file1 | awk '{print $1}' `
FMSA_DATA_LIST=`cat /tmp/file2 | awk '{print $1}' `


The value of each of...
10,813
Posted By Shoeless_Mike
USER=$1 START=$2 ACL_LIST=$3 if [[ ${3} ==...
USER=$1
START=$2
ACL_LIST=$3
if [[ ${3} == "" ]]
then
ACL_LIST=/tmp/acl_list.out
fi

find $START | xargs ls -ld 2>/dev/null | grep "^..........+" 2>/dev/null > $ACL_LIST
for user...
10,813
Posted By Shoeless_Mike
Not on a ZFS file system - getfact/setfacl have...
Not on a ZFS file system - getfact/setfacl have been deprecated... replaced with chmod options for setfacl and ls options (vV) for getfacl.
Forum: Solaris 11-16-2009
3,533
Posted By Shoeless_Mike
Solaris 10 ZFS ACL help
All,

Does anyone know of a simple way to traverse a file system and collect all ACL's (or ACE's as they are called now)? We use to be able to use getfacl fairly easily for this task but now we...
10,813
Posted By Shoeless_Mike
Script to find/apply Solaris 10 ACL's
This may be a question for a different forum, but as I will need a script I thought I would start here.

We recently migrated from Solaris 8 to Solaris 10. The file system in question here is...
5,756
Posted By Shoeless_Mike
Thanks!
Beautiful Franklin - works very nicely. I will now set about deconstructing the lines to figure them out for future application.

MUCH APPRECIATED!!!!

Mike
5,756
Posted By Shoeless_Mike
I should have included a better example - sorry -...
I should have included a better example - sorry - here is the real file:

create table "informix".esc_acct
(
fi_id decimal(9,0) not null ,
ea_nbr char(14) not null ,
...
5,756
Posted By Shoeless_Mike
Sed or Awk to remove specific lines
I have searched the forum for this - forgive me if I missed a previous post.

I have the following file:

blah blah blah
blah blah blah
blah blah blah
blah blah blah
blah blah blah
...
18,075
Posted By Shoeless_Mike
Much obliged.
Much obliged.
18,075
Posted By Shoeless_Mike
Bump - please help
Bump - please help
4,043
Posted By Shoeless_Mike
I did not follow your question completely but you...
I did not follow your question completely but you could get part of your solution by doing something like:

awk '/Additional/,/ID/' file.name
18,075
Posted By Shoeless_Mike
Adding array element in KSH
All,

I would like to add the first 10 elements of an array. Here is how I am doing it now (only included first few add ops):

#!/usr/bin/ksh

###Grab the array values out of a file###...
Showing results 1 to 13 of 13

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