Error creating a dir


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Error creating a dir
# 1  
Old 11-11-2011
Error creating a dir

I have this script to create a folder
Code:
#!/bin/bash
FECHA=`/bin/date +%Y%m%d`
mkdir /dir/$FECHA

Itīs work well but when I seek for the folder appears garbage.

Even if only use
Code:
#!/bin/bash
mkdir /dir/name

In the folder name only appears garbage in the name

Last edited by Scott; 11-11-2011 at 05:41 PM.. Reason: Code tags
# 2  
Old 11-11-2011
Hi,

Do you wish to create a directory structure like /dir/bin/<yyyymmdd>?
Please try mkdir -p /dir/name

tnr,
Shivangi
# 3  
Old 11-11-2011
I have try mkdir -p but still have the problem

For example I want to create a folder named 20111111 but with the script the name appears _2X68O~Y
Quote:
Hi,

Do you wish to create a directory structure like /dir/bin/<yyyymmdd>?
Please try mkdir -p /dir/name

tnr,
Shivangi
# 4  
Old 11-11-2011
Oh so the value in variable FETCHA is not correct.
you can try like this
Code:
year=`date +%Y`
month=`date+%m`
dt=`date+%d`
newdir=$year$month$dt
echo $newdir
FETCHA=/bin/$newdir
echo $FETCHA
mkdir -p /dir$FETCHA

This should create dir /dir/bin/20111111 for you.

tnr,
Shiv

Last edited by Scott; 11-11-2011 at 05:42 PM.. Reason: Code tags
# 5  
Old 11-11-2011
Still doesnīt work.

I use this to check the values
Code:
#!/bin/bash
year=`date +%Y`
echo $year
month=`date +%m`
echo $m
dt=`date +%d`
echo $dt
newdir=$year$month$dt
echo $newdir
#mkdir -p $newdir

As output I recive
Code:
[root@localhost test]# sh test.sh
2011

11
1111

---------- Post updated at 04:44 PM ---------- Previous update was at 04:41 PM ----------

Even if only use this
Code:
#!/bin/bash
year=`date +%Y`
mkdir -p $year

The folder name appear as 2OH010~3

Last edited by Scott; 11-11-2011 at 05:45 PM.. Reason: Please use code tags. And there's really no need to QUOTE every time
# 6  
Old 11-14-2011
I have solve the problem adding a ; at the end of each line
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Assign read write permission to the user for specific dir and it's sub dir and files in AIX

I have searched this quite a long time but couldn't find the right method for me to use. I need to assign read write permission to the user for specific directories and it's sub directories and files. I do not want to use ACL. I do not want to assign user the same group of that directories too.... (0 Replies)
Discussion started by: blinkingdan
0 Replies

2. UNIX for Beginners Questions & Answers

Creating dir with date and then increment by 1

Hi, I can't seem to do this or find how to do it. Can someone please help: I have a dir and within it I have dirs with date name example Test1/ 2017-08-12 2017-09-13 2017-10-14 2017-11-15 2017-11-16 what I want is a a script to scan the above and then take 2017-11-16 and increase this... (10 Replies)
Discussion started by: israr75
10 Replies

3. Shell Programming and Scripting

KSH - Find paths of multiple files in CC (dir and sub-dir))

Dear Members, I have a list of xml files like abc.xml.table prq.xml.table ... .. . in a txt file. Now I have to search the file(s) in all directories and sub-directories and print the full path of file in a output txt file. Please help me with the script or command to do so. ... (11 Replies)
Discussion started by: Yoodit
11 Replies

4. UNIX for Dummies Questions & Answers

How to list all files in dir and sub-dir's recursively along with file size?

I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In have to list all the files in directory and its sub directories along with file path and size of the file Please help me in this regard and many thanks in advance. (3 Replies)
Discussion started by: nmakkena
3 Replies

5. UNIX for Dummies Questions & Answers

Creating a File system with required permissions for all DIR's created in

Hello All, I am application admin. I need to clear all the temporary files cleared by the applications. I need help/suggestion that is there any way to create a file system such that every Dir created in by any user will have 775 permissions. So, that i can simply clear the temporary file which... (6 Replies)
Discussion started by: firestar
6 Replies

6. Shell Programming and Scripting

Perform action in dir if dir has .git subdir

Hi, I want to run git status for the dir which has subdir ".git" in it with dir path mentioned in output log? If a dir does not have .git subdir then skip that dir. Dir will have 100 main dirs & 500 + subdirs and so on. I appreciate all your help :b: (4 Replies)
Discussion started by: dragon.1431
4 Replies

7. Shell Programming and Scripting

A script to find dir, delete files in, and then del dir?

Hello!! I have directories from 2008, with files in them. I want to create a script that will find the directoried from 2008 (example directory: drwxr-xr-x 2 isplan users 1024 Nov 21 2008 FILES_112108), delete the files within those directories and then delete the directories... (3 Replies)
Discussion started by: bigben1220
3 Replies

8. UNIX and Linux Applications

CPIO Problem, copy to the root dir / instead of current dir

HI all, I got a CPIO archive that contains a unix filesystem that I try to extract, but it extract to the root dir / unstead of current dir, and happily it detects my file are newer otherwise it would have overwrited my system's file! I tried all these commands cpio -i --make-directories <... (2 Replies)
Discussion started by: nekkro-kvlt
2 Replies

9. Shell Programming and Scripting

a script to clone a dir tree, & overwrite the dir struct elsewhere?

hi all, i'm looking for a bash or tcsh script that will clone an empty dir tree 'over' another tree ... specifically, i'd like to: (1) specify a src directory (2) list the directory tree/hiearchy beneath that src dir, w/o files -- just the dirs (3) clone that same, empty dir hierarchy to... (2 Replies)
Discussion started by: OpenMacNews
2 Replies

10. Shell Programming and Scripting

script to go to a different dir to run a commandline prompt in that dir

Hi, I need to know how I'll be able to write a script that can goto a different dir where I don't have access to read,write and execute and also to run a commandline prompt in that dir with one file whose path has to be specified in that command. Will I be able to do this? Any ideas or... (2 Replies)
Discussion started by: ann_124
2 Replies
Login or Register to Ask a Question