Giter VIP home page Giter VIP logo

hyf-module-htmlcssgit's Introduction

HYF-Module-HTMLCSSGIT

CLI-CHALLENGE

1-How do I create a hidden file or folder? How do I display it in the CLI?

To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

2-How do I create multiple nested directories, like /c/Users/myusername/these/folders/are/just/for/fun?

For that we can use the command: mkdir -p /c/users/myusername/...etc.

3-Write more than one command that will create a file that looks like the following (you are not allowed to use the newline character (\n))?

We can use many commands in order to do that

  • echo first > ddd.text ; echo second >> ddd.text
  • The command ( nano file.text) will opens the file in the Nano text editor, where we can manually type in the two messages.
  • .Vscode .

Here are the commands I used to create the CLI challenge text file:

dsham@Diaa MINGW64 ~ $ cd desktop

dsham@Diaa MINGW64 ~/desktop $ mkdir hyf-html-exercises

dsham@Diaa MINGW64 ~/desktop $ cd hyf-html-exercises/

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises $ mkdir Week1

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises $ cd Week1/

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ toch CLI-Challenge.text bash: toch: command not found

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ touch CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ ls CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "1-How do I create a hidden file or folder? How do I display it in the CLI?" > CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI?

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example:" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example:

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal:" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal:

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "touch .HiddenFile.text." >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text.

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "And if we want to creat a hidden folder we can use the command:" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command:

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ touch "mkdir .myhiddenfolder" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command:

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ rm mkdir\ .myhiddenfolder

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command:

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "mkdir .myhiddenfolder" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "To display hidden file we can use:" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use:

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo " ls -a " >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "2-How do I create multiple nested directories, like /c/Users/myusername/these/folders/are/just/for/fun?" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

2-How do I create multiple nested directories, like /c/Users/myusername/these/folders/are/just/for/fun?

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "For that we can use the command:" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo " mkdir -p /c/users/myusername/...etc." CLI-Challenge.text mkdir -p /c/users/myusername/...etc. CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

2-How do I create multiple nested directories, like /c/Users/myusername/these/folders/are/just/for/fun? For that we can use the command:

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ ^C

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo " mkdir -p /c/users/myusername/...etc." CLI-Challenge.text mkdir -p /c/users/myusername/...etc. CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

2-How do I create multiple nested directories, like /c/Users/myusername/these/folders/are/just/for/fun? For that we can use the command:

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo " mkdir -p /c/users/myusername/...etc." >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

2-How do I create multiple nested directories, like /c/Users/myusername/these/folders/are/just/for/fun? For that we can use the command: mkdir -p /c/users/myusername/...etc.

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "3-Write more than one command that will create a file that looks like the following (you are not allowed to use the newline character (\n)):" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

2-How do I create multiple nested directories, like /c/Users/myusername/these/folders/are/just/for/fun? For that we can use the command: mkdir -p /c/users/myusername/...etc.

3-Write more than one command that will create a file that looks like the following (you are not allowed to use the newline character (\n)):

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo "We can use many commands in order to do that" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo " * echo " first" > ddd.text ; echo "second" >> ddd.text" >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

2-How do I create multiple nested directories, like /c/Users/myusername/these/folders/are/just/for/fun? For that we can use the command: mkdir -p /c/users/myusername/...etc.

3-Write more than one command that will create a file that looks like the following (you are not allowed to use the newline character (\n)): We can use many commands in order to do that

  • echo first > ddd.text ; echo second >> ddd.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo " * The command ( nano file.text) will opens the file in the Nano text editor, where we can manually type in the two messages." >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

2-How do I create multiple nested directories, like /c/Users/myusername/these/folders/are/just/for/fun? For that we can use the command: mkdir -p /c/users/myusername/...etc.

3-Write more than one command that will create a file that looks like the following (you are not allowed to use the newline character (\n)): We can use many commands in order to do that

  • echo first > ddd.text ; echo second >> ddd.text
  • The command ( nano file.text) will opens the file in the Nano text editor, where we can manually type in the two messages.

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo " * .Vscode . " >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo >> CLI-Challenge.text

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ cat CLI-Challenge.text 1-How do I create a hidden file or folder? How do I display it in the CLI? To create a hidden file or folder, we just need to add adot at the beginning of the file name using touch command, for example: We want to creat a hidden file named ( HiddenFlie.tex), we can use the following command in the terminal: touch .HiddenFile.text. And if we want to creat a hidden folder we can use the command: mkdir .myhiddenfolder To display hidden file we can use: ls -a

2-How do I create multiple nested directories, like /c/Users/myusername/these/folders/are/just/for/fun? For that we can use the command: mkdir -p /c/users/myusername/...etc.

3-Write more than one command that will create a file that looks like the following (you are not allowed to use the newline character (\n)): We can use many commands in order to do that

  • echo first > ddd.text ; echo second >> ddd.text
  • The command ( nano file.text) will opens the file in the Nano text editor, where we can manually type in the two messages.
  • .Vscode .

dsham@Diaa MINGW64 ~/desktop/hyf-html-exercises/Week1 $ echo " Here are the commands I used to create the CLI challenge text file:" >> CLI-Challenge.text

hyf-module-htmlcssgit's People

Contributors

diashamma avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.