Sponsored Content
Full Discussion: mkdir command
Operating Systems Linux mkdir command Post 302541407 by ironmonkey555 on Sunday 24th of July 2011 12:56:23 PM
Old 07-24-2011
MySQL

hi,
Its not a big problem.... when you do

Code:
mkdir super

this directory is created and then to get into the directory from current place you need to use...

Code:
cd super # see the diff no '/' present... you can also type some initial characters like
             # su or sup and press tab button it will display name super directly

and to remove directory.... simple rm command is not sufficient...

Code:
rm -rf super # r- recursive and f- forcefully

Regards,
Ironmonkey
This User Gave Thanks to ironmonkey555 For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

What's the problem with the command of mkdir

The message is: #mkdir /home/ade mkdir:Failed to make directory "/home/ade",Operation not applicable. What's the problem? :mad: (3 Replies)
Discussion started by: new_hand
3 Replies

2. Shell Programming and Scripting

mkdir

Hi, I look for a script to create 150 directories : d000 d001 d002 ... ... d149 would you help me please ? I think it would be for i mkdir d$i Many thanks. PS : #uname -a AIX fserver 3 5 0050691A4C00 (2 Replies)
Discussion started by: big123456
2 Replies

3. UNIX for Advanced & Expert Users

mkdir

Is there ant way to increase max number of folders in the directory from the 32766: Problem UFS: shell>mkdir mmm mkdir: mmm: Too many links But there are no links, just folders. shell>ls | wc -l 32766 (3 Replies)
Discussion started by: mirusnet
3 Replies

4. Shell Programming and Scripting

Cp/Mkdir and spaces

I am having trouble using cp and mkdir commands on a small script. The problem is I have spaces what I am trying to mkdir and then copy. Any suggestions on how I can solve this problem? I've tried searching online. while read linefile do echo mkdir -p $CPP$linefile | cut -d / -f 1-5,8-12 ... (10 Replies)
Discussion started by: imagiro1
10 Replies

5. UNIX for Dummies Questions & Answers

mkdir unix command

hi.. i want to know how mkdir command make directory in linux....?? (2 Replies)
Discussion started by: rinkugarg
2 Replies

6. Shell Programming and Scripting

Help me with mkdir command

Hi, please help me with this small script #!/bin/sh curdir=`pwd` n20=$curdir'/n20/' msat=$curdir'/n20/msat/' if then mkdir $n20 fi if then mkdir $msat fi for a in 30 40 50 60 70 80 do (4 Replies)
Discussion started by: Dark2Bright
4 Replies

7. Shell Programming and Scripting

[Solved] how to create multiple directory in one mkdir command

Hi, Unix Gurus, - I have a simple question, I need create multiple directory. I use mkdir {dir1, dir2, dir3) I got one directory as {dir1, dir2, dir3} I searched @ google, I got answer as above code.:wall::confused: Anybody has any idea Thanks in advance ---------- Post updated... (3 Replies)
Discussion started by: ken002
3 Replies

8. Homework & Coursework Questions

Mkdir

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Do the procedure, which if there are 5 parameters then it creates 4 directories with names of 4 parameters, in... (2 Replies)
Discussion started by: bolones
2 Replies

9. UNIX for Beginners Questions & Answers

Mkdir

hi linux expert what is a difference between: mkdir test and mkdir ./test and also if ( -e /test ) then and if ( -e ./test ) then thanks in advance Please use icode or code tags next time for your code and data (1 Reply)
Discussion started by: abdossamad2003a
1 Replies

10. Shell Programming and Scripting

Cd then mkdir from script

Importing images from a camera (or two). I sort by date (1901 this month). Currently (failing) if ] then echo "Found Panasonic G9X" #echo "List files on camera" #ls ${pana}/* . chxdir.sh ${photos}/$mn I want to change directory to a fixed base ($photos)/$mn... (10 Replies)
Discussion started by: dpawson
10 Replies
install(1M)						  System Administration Commands					       install(1M)

NAME
install - install commands SYNOPSIS
/usr/sbin/install -c dira [-m mode] [-u user] [-g group] [-o] [-s] file /usr/sbin/install -f dirb [-m mode] [-u user] [-g group] [-o] [-s] file /usr/sbin/install -n dirc [-m mode] [-u user] [-g group] [-o] [-s] file /usr/sbin/install -d | -i [-m mode] [-u user] [-g group] [-o] [-s] dirx... /usr/sbin/install [-m mode] [-u user] [-g group] [-o] [-s] file [dirx...] DESCRIPTION
install is most commonly used in ``makefiles'' (see make(1S)) to install a file in specific locations, or to create directories within a file system. Each file is installed by copying it into the appropriate directory. install uses no special privileges to copy files from one place to another. The implications of this are: o You must have permission to read the files to be installed. o You must have permission to copy into the destination directory. o You must have permission to change the modes on the final copy of the file if you want to use the -m option. o You must be super-user if you want to specify the ownership of the installed file with the -u or -g options. If you are not the super- user, the installed file is owned by you, regardless of who owns the original. install prints messages telling the user exactly what files it is replacing or creating and where they are going. If no options or directories (dirx ...) are given, install searches a set of default directories ( /bin, /usr/bin, /etc, /lib, and /usr/lib, in that order) for a file with the same name as file. When the first occurrence is found, install issues a message saying that it is overwriting that file with file, and proceeds to do so. If the file is not found, the program states this and exits. If one or more directories (dirx ...) are specified after file, those directories are searched before the default directories. OPTIONS
The following options are supported: -c dira Install file in the directory specified by dira, if file does not yet exist. If it is found, install issues a message say- ing that the file already exists, and exits without overwriting it. -f dirb Force file to be installed in given directory, even if the file already exists. If the file being installed does not already exist, the mode and owner of the new file is set to 755 and bin , respectively. If the file already exists, the mode and owner is that of the already existing file. -n dirc If file is not found in any of the searched directories, it is put in the directory specified in dirc. The mode and owner of the new file is set to 755 and bin, respectively. -d Create a directory. Missing parent directories are created as required as in mkdir -p. If the directory already exists, the owner, group and mode is set to the values given on the command line. -i Ignore default directory list, searching only through the given directories (dirx ...). -m mode The mode of the new file is set to mode. Set to 0755 by default. -u user The owner of the new file is set to user. Only available to the super-user. Set to bin by default. -g group The group id of the new file is set to group. Only available to the super-user. Set to bin by default. -o If file is found, save the ``found'' file by copying it to OLDfile in the directory in which it was found. This option is useful when installing a frequently used file such as /bin/sh or /lib/saf/ttymon, where the existing file cannot be removed. -s Suppress printing of messages other than error messages. USAGE
See largefile(5) for the description of the behavior of install when encountering files greater than or equal to 2 Gbyte ( 2**31 bytes). ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsu | +-----------------------------+-----------------------------+ SEE ALSO
chgrp(1), chmod(1), chown(1), cp(1), make(1S), mkdir(1), attributes(5), largefile(5) SunOS 5.10 1 Jul 2004 install(1M)
All times are GMT -4. The time now is 04:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy