Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Creating a new directory by getting input from user Post 302887820 by bakunin on Tuesday 11th of February 2014 03:31:04 AM
Old 02-11-2014
Quote:
Originally Posted by sea
Code:
[ -e "$DIRTOCREATE" ] && mkdir -p "$DIRTOCREATE"

ahem..

you probably want it the other way round ;-) :

Code:
[ ! -e "$DIRTOCREATE" ] && mkdir -p "$DIRTOCREATE"

bakunin
This User Gave Thanks to bakunin For This Post:
 

10 More Discussions You Might Find Interesting

1. AIX

Limiting length of user in while creating user

Hi all, I am a newbe to aix 5.2. I want to specify the characters used by users while creating user in aix like specifying the length of the password should i use some sript for that if it is then please let me know how to do this if yes give me the link for the scripts. Thanks in advance ... (2 Replies)
Discussion started by: Satya Mishra
2 Replies

2. Shell Programming and Scripting

creating unique lists from user input

hi all, I'm trying to resolve a scenario where we prompt the user to enter 1 or more disk names. From there we would run a command on each disk which would give its location. This would allow us to create a list of disks at location A, a list of disks at location B,....etc... Any help... (1 Reply)
Discussion started by: annie
1 Replies

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

4. Shell Programming and Scripting

Counting the number of files within a directory input by the user

So I have a loop that stated if a directory exists or not. If it does it prints the number of files within that directory. I use this code... result=`(ls -l . | egrep -c '^-')` However, no matter which directory I input, it outputs the number "2" What is wrong here? (4 Replies)
Discussion started by: itech4814
4 Replies

5. Shell Programming and Scripting

Find ordinary files in directory input by user

I need to make a shell script that accepts a directory input by the user. The program searches for the directory and finds if it exists or not. Then if it does exist, it outputs the number of files within that directory. Here's what I have so far. result= echo "Please input a directory:... (5 Replies)
Discussion started by: itech4814
5 Replies

6. Shell Programming and Scripting

How to get the user input recursively until the user provides valid input

Hi, echo "Enter file name of input file list along with absolute path : " read inputFileList if then for string in `cat inputFileList` do echo $string done else echo " file does not exist" fi From the above code, if the user enters a invalid file... (1 Reply)
Discussion started by: i.srini89
1 Replies

7. Shell Programming and Scripting

Script interacts with user , based on user input it operates

i have a script which takes input from user, if user gives either Y/y then it should continue, else it should quit by displaying user cancelled. #!/bin/sh echo " Enter your choice to continue y/Y OR n/N to quit " read A if then echo " user requested to continue " ##some commands... (7 Replies)
Discussion started by: only4satish
7 Replies

8. Shell Programming and Scripting

Creating a script requiring a pause for user input

Hi I'm trying to create a basic script that pauses for user input to verify a file name before generating the output. I have numerous SSL certificate files which I am trying to determine the expiry date so what I'm trying to do is write a script so that is pauses to request the name of the .pem... (9 Replies)
Discussion started by: Buddyluv
9 Replies

9. Shell Programming and Scripting

User input and run awk using the input

I am trying to allow a user to enter in text and then store that text in a variable $gene to run in an awk command in which those values are used to run some calculations. I am getting syntax errors however, when I try. Thank you :). The awk runs great if it is a pre-defined file that is used,... (7 Replies)
Discussion started by: cmccabe
7 Replies

10. UNIX for Advanced & Expert Users

Prevent user from creating new user from his login

Hi Experts, Need your support Redhat 6.5 I want to create a user with all(read, write, execute) privileges except that user should not be able to create any new user from his login to perform any task. (10 Replies)
Discussion started by: as7951
10 Replies
FBAUTOSTART(1)							fbautostart Manual						    FBAUTOSTART(1)

NAME
fbautostart - Autostart all XDG applications SYNOPSIS
fbautostart [options] DESCRIPTION
fbautostart(1) is an XDG complaint startup tool. This will go through the directories set up by the spec, and start all applications that match it's current identifier. You may change that identifier with the FBXDG_DE env var. This tool has almost no library dependencies and was written to be smart about that sort of stuff. There is a greater then average chance that you will find a bug, since it is a from-scratch implementation of the .desktop spec. Pleas report bugs. Please. FILES
~/.config/autostart This folder contains the default user XDG dot-desktop files that will be run ( unless it's overridden by an ENV variable ) /etc/xdg This folder contains the default system XDG dot-desktop files that will be run ( unless it's overridden by an ENV variable ) OPTIONS
Sadly, there are no flags in this particular release. ENVIRONMENT VARIABLES
XDG_CONFIG_HOME The XDG root directory for the user's startup files, which may override the global startup files. XDG_CONFIG_DIRS The root XDG directory, where global XDG files are maintained. FBXDG_DE Development environment that we should act upon. This defaults to "FLUXBOX", since this is a fluxbox project, after all. Please note this is case sensitive. FBXDG_EXEC This dictates if we should execute the application that we've been told to or not. This is particularly useful for debugging the app. HOME The location of one's home directory, such that ~/ will be expanded to /home/user/ EXAMPLE
fbautostart AUTHORS
Paul Tagliamonte <paultag@ubuntu.com[1]> for fbautostart 2.718281 SEE ALSO
fluxbox(1) AUTHOR
Paul Tagliamonte <paultag@ubuntu.com> Author. NOTES
1. paultag@ubuntu.com mailto:paultag@ubuntu.com fbautostart.txt 7th September 2011 FBAUTOSTART(1)
All times are GMT -4. The time now is 11:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy