About 145,000 results
Open links in new tab
  1. How to create a directory using Ansible - Stack Overflow

    How do you create a directory www at /srv on a Debian-based system using an Ansible playbook?

  2. linux - mkdir: cannot create directory ‘LINUX ... - Stack Overflow

    The fact that /home is an absolute, literal path that has no user-specific component provides a clue. While /home happens to be the parent directory of all user-specific home directories on …

  3. linux - How to create a directory and give permission in single …

    Apr 26, 2011 · How to create a directory and give permission in single command in Linux? I have to create lots of folder with full permission 777. Commands mkdir path/foldername chmod 777 …

  4. One command to create a directory and file inside it linux command

    Aug 1, 2013 · Suppose my current directory is A. I want to create a directory B and a file "myfile.txt" inside B. How to do that in one command from Terminal? Edit: Directory can be …

  5. How do I create a copy of a directory in Unix/Linux?

    I want to recursively create a copy of a directory and all its contents (e.g. files and subdirectories).

  6. How to mkdir only if a directory does not already exist?

    I am writing a shell script to run under the KornShell (ksh) on AIX. I would like to use the mkdir command to create a directory. But the directory may already exist, in which case I do not …

  7. How to create a link to a directory on linux - Stack Overflow

    How to create a link to an existing file or directory using a GNU Linux shell command?

  8. How can I create a directory tree in C++ on Linux?

    I want an easy way to create multiple directories in C++ on Linux. For example, I want to save a file lola.file in the directory: /tmp/a/b/c but if the directories are not there I want them to be

  9. linux - Is there a way to make mv create the directory to be moved …

    Make the directory with mkdir -p including a temporary directory that is shares the destination file name, then remove that file name directory with a simple rmdir, then move your file to its new …

  10. directory - How to use Bash to create a folder if it doesn't already ...

    Feb 5, 2011 · The ; token is a command separator, so is newline. As then is a separate command, the preceding semicolon is needed to be be able to write it in the same line. The semicolons …