From cc2638f38e91da2e6c3d4926de2783925a7da663 Mon Sep 17 00:00:00 2001 From: Vijay Patel <35554905+Patelvijaykumar@users.noreply.github.com> Date: Sat, 29 Jun 2019 19:40:15 +0530 Subject: [PATCH] wildcard example script added --- wildcard_example.sh | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 wildcard_example.sh diff --git a/wildcard_example.sh b/wildcard_example.sh new file mode 100644 index 0000000..9bb14eb --- /dev/null +++ b/wildcard_example.sh @@ -0,0 +1,41 @@ +#!/bin/bash + +# Comment Single line + + +echo -e "Directory a created \n" +mkdir a + +echo -e "Directory b created \n" +mkdir b + +echo -e "Directory b created \n" +mkdir c + +echo -e "Directory b created \n" +mkdir d + +echo -e "Creating 1.txt 2.txt 3.txt to a directory \n" +touch a/1.txt a/2.txt a/3.txt + +echo -e "listing of files in a directory " +ls a/ + +echo -e "\n Copying file from a directory to b using cp (a/* b/) \n" +cp a/* b/ + +echo -e "listing of files in b directory " +ls b/ + +echo -e "\n removing all files from b directory using (rm -f /b*) \n" +rm -f b/* + +echo -e "listing of files in b directory " +ls b/ + +echo -e "\n copying all files from a directory using extension ( cp a/*.txt c/) \n" +cp a/*.txt c/ + +echo -e "listing of files in c directory " +ls c/ +