Sponsored Content
Full Discussion: Not visible hidden folder
Top Forums Shell Programming and Scripting Not visible hidden folder Post 302690291 by methyl on Wednesday 22nd of August 2012 06:38:59 PM
Old 08-22-2012
This seems quite normal to me. We must assume that you are not logged in as root.

If you want to see all "hidden" files and directories:
Code:
ls -ald .??*


Btw:
Code:
ls -lad

Will not display anything useful because it has no file list to process.
This User Gave Thanks to methyl For This Post:
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

how to copy hidden files from one folder to another

dear all, i want to copy all files in my home dir to another. from my home dir i have given ls -la then some hidden files are there with dot . .. and i also want to copy all dirs in my home as it is . because iam upgrading the system how to copy all files and dirs in my home dir... (1 Reply)
Discussion started by: rajan_ka1
1 Replies

2. Shell Programming and Scripting

Why are the xml tags not visible?

Could some one please tell me why, when I run the following php code: <HTML> <HEAD> <TITLE></TITLE> </HEAD> <BODY> <?php $readfile = file("rss_file.xml"); for ($k=0; $k<=count($readfile)-1; $k++) { echo "$readfile<br>"; } </BODY> </HTML> the tags do not appear in... (1 Reply)
Discussion started by: photon
1 Replies

3. Shell Programming and Scripting

Finding Hidden files and protecting the folder containing hidden files from deletion

Hi. I have a script which is deleting files with a particular extension and older than 45 days.The code is: find <path> -name "<filename_pattern>" -mtime +45 -exec rm {} \; But the problem is that some important files are also getting deleted.To prevent this I have decide to make a dummy... (4 Replies)
Discussion started by: pochaw
4 Replies

4. Web Development

images are not visible

hi, why my uploaded images are not visible both in front-end and back-end of my CMS ? See the picture: http://dl-client.getdropbox.com/u/72686/noPics.png I checked the GD library in php. It seems ok... http://dl.getdropbox.com/u/72686/GD.png thanks ---------- Post updated at... (0 Replies)
Discussion started by: aneuryzma
0 Replies

5. Solaris

folder not visible in ls -l

Hi, I have a strange problem. when i do ls i see a folder, say 'abc', but it disappears when i do ls -l. I cannot access or mv that folder. Solaris 10 (SPARC) doesn't allow me to create a new folder with the same name, as it already exists. 'file' command also doesn't recognize i 'abc'... (10 Replies)
Discussion started by: Mack1982
10 Replies

6. UNIX for Dummies Questions & Answers

List all directories hidden or not hidden

I want to list all directories hidden or not hidden. ls -ld */ => shows only not hidden directories so i guess the answer would be to add the a option to show all files ls -lad */ => not working :confused: ls -la | grep "^d" => works But I would like to know why I can't use ls -lad... (4 Replies)
Discussion started by: servus
4 Replies

7. Solaris

Groups is not visible

OS : SunOS 5.8 I am trying to add a user ad3059 to the following groups, A B C D ( four groups A,B,C,D) When i use usermod command and add the user to the above groups, and go to > groups ad3059 other C D It doesnt show A and B groups and shows it as other.Please advice on how... (13 Replies)
Discussion started by: Revathi2089
13 Replies

8. Shell Programming and Scripting

Rsync - how to copy hidden folder or hidden files when using full path

Hello. I use this command : rsync -av --include=".*" --dry-run "$A_FULL_PATH_S" "$A_FULL_PATH_D"The data comes from the output of a find command. And no full source directories are in use, only some files. Source example... (2 Replies)
Discussion started by: jcdole
2 Replies
Imager::Probe(3pm)					User Contributed Perl Documentation					Imager::Probe(3pm)

NAME
Imager::Probe - hot needle of inquiry for libraries SYNOPSIS
require Imager::Probe; my %probe = ( # short name of what we're looking for (displayed to user) name => "FOO", # pkg-config lookup pkg => [ qw/name1 name2 name3/ ], # perl subs that probe for the library code => [ &foo_probe1, &foo_probe2 ], # or just: code => &foo_probe, inccheck => sub { ... }, libcheck => sub { ... }, # search for this library if libcheck not supplied libbase => "foo", # library link time options, uses libbase to build options otherwise libopts => "-lfoo", # C code to check the library is sane testcode => "...", # header files needed testcodeheaders => [ "stdio.h", "foo.h" ], ); my $result = Imager::Probe->probe(\%probe) or print "Foo library not found: ",Imager::Probe->error; DESCRIPTION
Does the probes that were hidden in Imager's Makefile.PL, pulled out so the file format libraries can be externalized. The return value is either nothing if the probe fails, or a hash containing: o "INC" - "-I" and other C options o "LIBS" - "-L", "-l" and other link-time options o "DEFINE" - "-D" options, if any. The possible values for the hash supplied to the probe() method are: o "pkg" - an array of pkg-config names to probe for. If the pkg-config checks pass, "inccheck" and "libcheck" aren't used. o "inccheck" - a code reference that checks if the supplied include directory contains the required header files. o "libcheck" - a code reference that checks if the supplied library directory contains the required library files. Note: the Makefile.PL version of this was supplied all of the library file names instead. "libcheck" can also be an arrayref of library check code references, all of which must find a match for the library to be considered "found". o "libbase" - if "inccheck" is supplied, but "libcheck" isn't, then a "libcheck" that checks for "lib"libbase$Config{_a} and "lib"libbase.$Config{so} is created. If "libopts" isn't supplied then that can be synthesized as "-llibbase". "libbase" can also be an arrayref of library base names to search for, in which case all of the libraries mentioned must be found for the probe to succeed. o "libopts" - if the libraries are found via "inccheck"/"libcheck", these are the "-l" options to supply during the link phase. o "code" - a code reference to perform custom checks. Returns the probe result directly. Can also be an array ref of functions to call. o "testcode" - test C code that is run with Devel::CheckLib. You also need to set "testcodeheaders". o "testcodeprologue" - C code to insert between the headers and the main function. o "incpath" - $Config{path_sep} separated list of header file directories to check, or a reference to an array of such. o "libpath" - $Config{path_sep} separated list of library file directories to check, or a reference to an array of such. o "alternatives" - an optional array reference of alternate configurations (as hash references) to test if the primary configuration isn't successful. Each alternative should include an "altname" key describing the alternative. Any key not mentioned in an alternative defaults to the value from the main configuration. perl v5.14.2 2012-04-29 Imager::Probe(3pm)
All times are GMT -4. The time now is 08:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy