Skip to content

wildcard example script added #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions wildcard_example.sh
Original file line number Diff line number Diff line change
@@ -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/