Sponsored Content
Top Forums UNIX for Dummies Questions & Answers List all directories hidden or not hidden Post 302694255 by servus on Thursday 30th of August 2012 10:12:03 AM
Old 08-30-2012
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 Smilie

ls -la | grep "^d" => works

But I would like to know why I can't use ls -lad */

Please explain


Moderator's Comments:
Mod Comment Please use code tags next time for your code and data.

Last edited by zaxxon; 08-30-2012 at 11:14 AM.. Reason: code tags
 

7 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Hidden Characters

Hello all, I have two files, that I suspect may contain hidden characters (EG, three spaces instead of a tab). Does anyone know of any tool that can display this (I have tried using diff, but I'm not quite sure it would do the job) (6 Replies)
Discussion started by: Khoomfire
6 Replies

2. 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

3. Shell Programming and Scripting

How to see hidden characters.....

I know that cat -v will show me hidden characters in a file.... I for some reason seem to think that there's a bash command that will show me hidden characters in a variable in a script? Or am I just imagining it? Thanks in advance (8 Replies)
Discussion started by: Bashingaway
8 Replies

4. Red Hat

directories hidden from "ls -al"

Hi: I found some "hidden" directories created by a version control tool that can't be displayed by "ls -al". but user can "cd" into them and see the files inside. My questions are: 1) what commands can reveal those directories when "ls -al" fails? 2) how do you create such... (2 Replies)
Discussion started by: phil518
2 Replies

5. Shell Programming and Scripting

List only hidden files, not use . option

Hi I have a prompt like this: PS1='\\u@\h \\w $(es=$?; ] && echo "\" || echo "\")\$\' It works like it should, but have a bug. Problem is the counting of hidden files $(($(ls -ad .* | wc -l)-2)) echo $(($(ls -ad .* | wc -l)-2)) The . seems to create the problem when I cut and past to... (3 Replies)
Discussion started by: Jotne
3 Replies

6. UNIX for Advanced & Expert Users

Find all files in the current directory excluding hidden files and directories

Find all files in the current directory only excluding hidden directories and files. For the below command, though it's not deleting hidden files.. it is traversing through the hidden directories and listing normal which should be avoided. `find . \( ! -name ".*" -prune \) -mtime +${n_days}... (7 Replies)
Discussion started by: ksailesh1
7 Replies

7. 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
tixDirTree(n)						       Tix Built-In Commands						     tixDirTree(n)

__________________________________________________________________________________________________________________________________________________

NAME
tixDirTree - Create and manipulate tixDirTree widgets SYNOPSIS
tixDirTree pathName ?options? SUPER-CLASS The TixDirTree class is derived from the TixScrolledHList class and inherits all the commands, options and subwidgets of its super-class. STANDARD OPTIONS
TixDirTree supports all the standard options of a frame widget. See the options(n) manual entry for details on the standard options. WIDGET-SPECIFIC OPTIONS [-browsecmd browseCmd] Specifies a command to call whenever the user browses on a directory (usually by single-clicking on the name of the directory). The command is called with one argument, the complete pathname of the directory. [-command command] Specifies the command to be called when the user activates on a directory (usually by double-clicking on the name of the directory). The command is called with one argument, the complete pathname of the directory. [-dircmd dircmd] Specifies the TCL command to be called when a directory listing is needed for a particular directory. If this option is not specified, by default the DirTree widget will attempt to read the directory as a Unix directory. On special occasions, the application programmer may want to supply a special method for reading directories: for example, when he needs to list remote directories. In this case, the -dircmd option can be used. The specified command accepts two arguments: the first is the name of the directory to be listed; the second is a Boolean value indicating whether hidden sub-directories should be listed. This command returns a list of names of the sub-directories of this directory. For example: proc read_dir {dir show_hidden} { if {$dir == "C:"} { return {DOS NORTON WINDOWS} } else { return {} } } [-disablecallback disableCallback] A boolean value indicating whether callbacks should be disabled. When set to true, the TCL command spec- ified by the -command option is not executed when the -value of the DirTree widget changes. [-showhidden showHidden] Specifies whether hidden directories should be shown. By default, a directory name starting with a period "." is considered as a hidden directory. This rule can be overridden by supplying an alternative -dircmd option. Name: value Class: Value Switch: -value Alias: -directory Specifies the name of the current directory to be displayed in the DirTree widget. SUBWIDGETS
Name: hlist Class: TixHList The hierarchical listbox that displays the directory listing. Name: hsb Class: Scrollbar The horizontal scrollbar subwidget. Name: vsb Class: Scrollbar The vertical scrollbar subwidget. _________________________________________________________________ DESCRIPTION
The tixDirTree command creates a new window (given by the pathName argument) and makes it into a DirTree widget. Additional options, described above, may be specified on the command line or in the option database to configure aspects of the DirTree such as its cursor and relief. The DirTree widget displays a list view of a directory, its previous directories and its sub-directories. The user can choose one of the directories displayed in the list or change to another directory. WIDGET COMMANDS
The tixDirTree command creates a new Tcl command whose name is the same as the path name of the DirTree's window. This command may be used to invoke various operations on the widget. It has the following general form: pathName option ?arg arg ...? PathName is the name of the command, which is the same as the DirTree widget's path name. Option and the args determine the exact behavior of the command. The following commands are possible for DirTree widgets: pathName cget option Returns the current value of the configuration option given by option. Option may have any of the values accepted by the tixDirTree command. pathName chdir dir Change the current directory to dir. pathName configure ?option? ?value option value ...? Query or modify the configuration options of the widget. If no option is specified, returns a list describing all of the available options for pathName (see Tk_ConfigureInfo for information on the format of this list). If option is specified with no value, then the command returns a list describing the one named option (this list will be identical to the corresponding sublist of the value returned if no option is specified). If one or more option-value pairs are specified, then the command modifies the given widget option(s) to have the given value(s); in this case the command returns an empty string. Option may have any of the values accepted by the tixDirTree command. pathName subwidget name ?args? When no options are given, this command returns the pathname of the subwidget of the specified name. When options are given, the widget command of the specified subwidget will be called with these options. BINDINGS
The mouse and keyboard bindings of the DirTree widget are the same as the bindings of the HList widget. KEYWORDS
Tix(n) Tix 4.0 tixDirTree(n)
All times are GMT -4. The time now is 08:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy