forked from easyawslearn/Shell-Script-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwildcard-example.sh
More file actions
40 lines (26 loc) · 750 Bytes
/
wildcard-example.sh
File metadata and controls
40 lines (26 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/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/