creating directory in unix


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers creating directory in unix
# 1  
Old 10-31-2011
Power creating directory in unix

Hi,

If i create a directory like with the command ...

Code:
~/.ssh

so where this folder will be get created in side my home directory ...? what (~) represents here..?Smilie
# 2  
Old 10-31-2011
It will be created in your home directory as a hidden directory. ~ represents Home Directory here.
This User Gave Thanks to smilesavvy For This Post:
# 3  
Old 10-31-2011
Quote:
Originally Posted by smilesavvy
It will be created in your home directory as a hidden directory. ~ represents Home Directory here.
Well if I have directory under home lets say /home/499633 and now I want to make dir(ssh) inside the directory 499633... then what would be the command please guide me and how can I view the hidden directories in unix...Thanks in advance..!!Smilie
# 4  
Old 10-31-2011
Code:
#assuming /home is your home directory
mkdir ~/499633/.ssh
 
ls -la ~/499633/

--ahamed
# 5  
Old 10-31-2011
To create a directory .ssh in /home/499633

Code:
mkdir -p /home/499633/.ssh

To see hidden directories

Code:
ls -a | gerp "^d"

Moderator's Comments:
Mod Comment Video tutorial on how to use code tags in The UNIX and Linux Forums.

Last edited by vbe; 10-31-2011 at 06:22 AM.. Reason: code tags
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

creating file and it directory

hello, is there any command that i can use to create a file and also it directory (if not exist)? example: <command> /home/admin/testdir/test1.txt desc: this will create test1.txt under testdir directory. but if testdir is not exist it will be created automatically. thank you... (3 Replies)
Discussion started by: makan
3 Replies

2. Shell Programming and Scripting

creating directory from scripts

Dear All, I have a shell scripts which create a directory and perform moving some files, when the script is kept where it is creating directory then it runs fine , but when the scripts is run where it is supposed to be which is different location then where i am creating directory , scripts... (2 Replies)
Discussion started by: guddu_12
2 Replies

3. UNIX for Dummies Questions & Answers

Error while creating directory

Hello Experts while read dirlist do mkdir "$(echo "$dirlist" |\ awk -F\| '{gsub(/(+)/," ",$NF);gsub(/\.atr$/,""); print}')" done < /user/Oracle/my_catalog/default/root/bkup/dirnames.txt where dirname.txt consist of file path details as mentioned below ... (4 Replies)
Discussion started by: aks_1902
4 Replies

4. UNIX for Dummies Questions & Answers

Need help in creating directory

Hello Experts let say we got a line a file named /user/Oracle/my_catalog/default/root/webcat+backup+testing+07192011.atr now i have to create a directory with name webcat backup testing 07192011 by removing + and removing .atr at the given path...can it be possible Please let me know... (4 Replies)
Discussion started by: aks_1902
4 Replies

5. Homework & Coursework Questions

Creating directories within a directory?

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: Ok i need to create a directory within another directory in one command. I'm already in a directory to. I need to... (6 Replies)
Discussion started by: gangsta
6 Replies

6. Shell Programming and Scripting

Creating Directory

Hi All, As I m very new for Unix, I need to check for a directory and move a file. If Directory is not found, The script should create a directory and move the file. Can any one help here. (7 Replies)
Discussion started by: vikramtk
7 Replies

7. UNIX for Dummies Questions & Answers

Creating a list of files in directory?

Hi All, I would like to do a loop on all the files with extension .out in my directory this files should be sorted alphabetically. Then I need to assign to each of them a progressive ID of three digits (maybe in HEX format?). First I tried to list manually the files as ARRAY=( A-001.out ... (5 Replies)
Discussion started by: f_o_555
5 Replies

8. Shell Programming and Scripting

creating a directory tree

Hi all, I'd like to create a directory tree, and define from stdin how many levels deep and how many directories in each level should be created. What I wrote does not work properly:#!/bin/bash #set -x read -p " What root directory? " rootDir && { /bin/rm -R $rootDir; mkdir $rootDir; } ||... (2 Replies)
Discussion started by: NBaH
2 Replies

9. Shell Programming and Scripting

Creating date directory and moving files into that directory

I have list of files named file_username_051208_025233.log. Here 051208 is the date and 025233 is the time.I have to run thousands of files daily.I want to put all the files depending on the date of running into a date directory.Suppose if we run files today they should put into 05:Dec:08... (3 Replies)
Discussion started by: ravi030
3 Replies

10. UNIX for Advanced & Expert Users

creating directory error

i have create a Directory with "$@#$%" . After creating a Directory, put ls command display "#$%" . Why? (2 Replies)
Discussion started by: lakshmananindia
2 Replies
Login or Register to Ask a Question