#!/bin/bash
# Bash script that will produce a text file that has a list of the files in the present working directory
cd /bin
ls -d
ls -d >>file.txt
#!/bin/bash
#Bash script that will copy all the files in one directory to another directory
ls -d
mkdir /EgorDir
cp*.*ls-d /EgorDir
echo "Done"