Hi,

> thanks for that Seb, but what if I'm not finding a file called 
> .is_valid_sshkey?
>
> using:
> sudo find / -type f -iname ".is_valid_sshkey" -ls

There could be a suffix, such as .mas, which would not be found with your 
syntax. Example:

>mkdir toto
>touch toto/.hidden
>find . -type f -iname ".hidden" -ls
217773    0 -rw-r--r--   1 seb      seb   0 Jan  9 22:04 ./toto/.hidden
>find . -type f -iname ".hid" -ls
>find . -type f -iname ".hid*" -ls
217773    0 -rw-r--r--   1 seb      seb   0 Jan  9 22:04 ./toto/.hidden

So I suggest you try this:

sudo find / -type f -iname ".is_valid_sshkey*" -ls


Seb.



>
> On Mon, Jan 9, 2017 at 2:47 PM, Seb <s...@h-k.fr> wrote:
>
>>
>> Hi Hiram,
>>
>>
>> my $is_valid = $m->comp(".is_valid_sshkey", sshkey => $ssh2, uidnumber =>
>>> $employeeNumber, );
>>>
>>> As I understand it, this is a mason subcomponent, but what isn't clear to
>>> me is the ".is_valid_sshkey"
>>>
>>
>> The line means to use a Mason component whose code resides in the file
>> named ".is_valid_sshkey", which could also be written ./.is_valid_sshkey .
>> You will find this (hidden) file in the same directory as the one from
>> which the code is extracted.
>>
>>
>> Seb.
>>
>
>
>
>

------------------------------------------------------------------------------
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
_______________________________________________
Mason-users mailing list
Mason-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mason-users

Reply via email to