Text,Code "Display tabs as ~For audio.mp3, I", cat -T audio.mp3 "Sort files in images by size, then move them to videos_backup",ls -S images | xargs -I {} mv images/{} videos_backup "After placing configuration.ini inside executable.exe.zip, remove it.", zip -u executable.exe.zip configuration.ini "While maintaining its properties, copy contract.pdf to documents_archive and establish a hard link.", cp -p -l contract.pdf documents_archive "Display spreadsheet.xlsx, showing line numbers, non-printing characters, and tabs as spaces, with a '$' at the end of each line",cat -n -vT -e spreadsheet.xlsx Seek for files bearing the photo.png name., find . -name photo.png "Make a copy of executable.exe, don't replace it, and output verbosely",mv -bnv executable.exe [directory_name] "Transfer all of the files from ""backups"" to ""reports,"" then zip them all together into a file called ""file_name].zip.""",cp /backups/* /reports/ | zip -r /reports/[file_name].zip /reports/* Replace temp with audio.mp3 if it's newer or doesn't exist,mv -u audio.mp3 temp Show buffered output suppressed for photo.png, cat -u photo.png Display files listed according to when they were modified.,ls -t Display characters for database.sql that aren't printed, cat -v database.sql Show tabs as ^I for presentation.pptx, cat -T presentation.pptx Move files to images, find . -name [file_name] -exec mv {} images \ Compile and transfer photo.png to database.sql.zip., zip -u database.sql.zip photo.png Display file details in the format of a long listing.,ls -l Seek for files bearing the photo.png name., find . -name photo.png Verbose mode: Move database.sql into the designated directory.,mv -v database.sql [directory_name] Files from memo.txt.zip should be extracted into reports_archive., unzip -d reports_archive memo.txt.zip Display each file on its own line,ls -1 Display audio.mp3 with non-blank line numbers, cat -b audio.mp3 Transfer scripts to documents_archive with recursive copying, cp -r scripts documents_archive Search for symbolic links, find . -type l "Uncompress database.sql.zip, extracting symbolic links, to directory music_library",unzip -l -d music_library database.sql.zip Show audio.mp3 with error messages suppressed, cat -q audio.mp3 "For each file name, create a backup, a hard link, and mirror it to the destination directory while preserving its properties.", cp -p -l -b [file_name] [destination_directory] "Replicate video.mp4 to temp_folder while retaining its attributes, creating a hard link, and making a backup", cp -p -l -b video.mp4 temp_folder Display the line counts for executable.exe, cat -n executable.exe "Make a backup of photo.png, regard the destination as a file, don't overwrite, and show verbose output.",mv -bnvT photo.png [directory_name] Display the contents of image.jpg with the repeated blank lines disabled, cat -s image.jpg Prioritise folders over files in the display,ls --group-directories-first "Create a backup of document.docx, do not overwrite, and display verbose output",mv -bnv document.docx [directory_name] Move files from backups to downloads_archive and append timestamp to filename,"find backups -type f -exec sh -c 'mv ""$1"" ""$2/$(basename ""$1"")_$(date +%Y%m%d_%H%M%S)""' sh {} downloads_archive \;" Show files in video.mp4.zip, unzip -l video.mp4.zip "List all files containing ""important"" with human-readable sizes",ls -h *important* Make a hard link by copying memo.txt to scripts_backup and maintaining all of its properties., cp -p -l memo.txt scripts_backup "Transfer audio.mp3 firmly to logs, overwriting if required.",mv -f audio.mp3 logs Use gzip to compress files., find . -type f -exec gzip {} \ Copy spreadsheet.xlsx to logs_archive maintaining all attributes,cp -a spreadsheet.xlsx logs_archive "Transfer all of the files from ""databases"" to ""scripts,"" then zip them all together into a file called ""file_name].zip.""",cp /databases/* /scripts/ | zip -r /scripts/[file_name].zip /scripts/* "Create a directory named 'scripts', copy a file named 'image.jpg' into it, and then remove the original file.",mkdir /scripts/ | cp /image.jpg /scripts/ | rm /image.jpg Print files listed individually,ls -1 Display spreadsheet.xlsx with all control characters, cat -A spreadsheet.xlsx Display video.mp4 with non-printing characters, cat -v video.mp4 Force copy photo.png to scripts_backup without prompting and preserving attributes, cp -f -p photo.png scripts_backup "Sort files by size and display file sizes in human-readable format, then display the last 5 lines",ls -lSh | tail -n 5 Force copy script.py to videos_backup and create a backup of existing files, cp -b -f script.py videos_backup "Make a symbolic link named ""alias"" pointing to ""music_library"" and establish a new directory called ""databases"".",mkdir databases && ln -s music_library alias List contents of script.py.zip without extracting, unzip -l script.py.zip Locate empty directories, find . -type d -empty Verbose: Move image.jpg to projects,mv -v image.jpg projects Display all files and directories recursively,ls -R "Create a directory named 'downloads', copy all files from 'archives' to it, then move them to 'templates', and finally find files matching the pattern '*.mp4'.","mkdir /downloads/ | cp /archives/* /downloads/ | mv /downloads/* /templates/ | find /templates/ -name ""*.*.mp4""" "Make a hard link, backup, and copy report.pdf to photos_backup while maintaining its properties.", cp -p -l -b report.pdf photos_backup "Decompress memo.txt.zip with password 'newpass', overwriting existing files, and only extracting files matching pattern '*.doc' to directory projects_backup",unzip -P newpass -o -j -d projects_backup memo.txt.zip '*.doc' Do not replace existing files in music with configuration.ini,mv -n configuration.ini music "List subdirectories in a recursive manner with comprehensive details, and then determine the overall disc consumption.",ls -Rl | du -h Show file details in long format,ls -l "Disentangle audio.mp3.zip, excluding temp_file2.txt, to directory templates_backup",unzip -x temp_file2.txt -d templates_backup audio.mp3.zip Show image.jpg contents with repeated empty lines suppressed, cat -s image.jpg "Package files presentation.pptx, database.sql, contract.pdf into presentation.pptx.zip, displaying verbose output, storing file attributes",zip -v -X presentation.pptx.zip presentation.pptx database.sql contract.pdf Transfer audio.mp3 to documents_archive and interactively confirm overwrite, cp -i audio.mp3 documents_archive Extract the files from image.jpg.zip by changing the directory to images_backup., unzip -C images_backup image.jpg.zip Look for regular files, find . -type f Examine image.jpg.zip for mistakes., unzip -t image.jpg.zip "Clone script.py to reports_archive with attribute preservation, creating a hard link, and making a backup", cp -p -l -b script.py reports_archive Create directory scripts with verbose output and parent directories if they do not exist,mkdir -v -p scripts "Archive files image.jpg, database.sql, policy.pdf into video.mp4.zip, using password 'pass123', verbose output",zip -P pass123 -v video.mp4.zip image.jpg database.sql policy.pdf Create document.docx.zip containing audio.mp3, zip -c document.docx.zip audio.mp3 "Copy document.docx to photos_backup while preserving its attributes, creating a hard link, and making a backup", cp -p -l -b document.docx photos_backup Show image.jpg contents with repeated empty lines suppressed, cat -s image.jpg Search for standard files., find . -type f "List files having coloured output, sorted by size and modification time.",ls -SltG Place script.py.zip inside spreadsheet.xlsx., zip -m script.py.zip spreadsheet.xlsx List file sizes in a way understandable to humans,ls -h List contents of policy.pdf with non-printing characters displayed, cat -v policy.pdf List files in reverse order of modification time,ls -r "Compress files proposal.docx, report.pdf, script.py into audio.mp3.zip, silently",zip -q audio.mp3.zip proposal.docx report.pdf script.py Sort files based on size,ls -S Find files with names ending in '.txt' and modified in the last 7 days,"find . -type f -name ""*.txt"" -mtime -7" Change directory to images_backup and extract files from executable.exe.zip, unzip -C images_backup executable.exe.zip Do not overwrite existing files in temp with script.py,mv -n script.py temp Use hard links to replicate document.docx to scripts_backup., cp -l document.docx scripts_backup Print database.sql contents with line numbering, cat -n database.sql Check that executable.exe.zip is intact., zip -T executable.exe.zip Enumerate files with expanded properties.,ls -l Locate files modified more than 1 year ago, find . -mtime +365 "Unwrap contract.pdf.zip, preserving permissions, quietly, and extracting to standard output to directory logs_archive",unzip -K -q -p -d logs_archive contract.pdf.zip "Using coloured output, comprehensive information, and human-readable sizes, sort files by size and modification time in reverse order.",ls -SltrhG Add and move database.sql to script.py.zip, zip -m script.py.zip database.sql Show non-blank line numbers for document.docx, cat -b document.docx Extract the files from database.sql.zip by navigating to documents_archive., unzip -C documents_archive database.sql.zip Locate files named image.jpg, find . -name image.jpg "In templates_backup, prompt before overwriting spreadsheet.xlsx.", cp -i spreadsheet.xlsx templates_backup Folders within Zip projects, zip -r projects projects "Zip files configuration.ini, contract.pdf, presentation.pptx into report.pdf.zip, using compression level 3",zip -3 report.pdf.zip configuration.ini contract.pdf presentation.pptx Check report.pdf.zip for errors, zip -T report.pdf.zip Sort files by size,ls -S List the contents of audio.mp3 while displaying each control character., cat -A audio.mp3 Mirror database.sql to images_backup and backup existing files, cp -b -p database.sql images_backup "From image.jpg.zip, remove contract.pdf.", zip -d image.jpg.zip contract.pdf Show presentation.pptx as ^ with tabsI, cat -T presentation.pptx Ignore directory structure when extracting files from script.py.zip, unzip -j script.py.zip Display report.pdf with tabs as ^I, cat -T report.pdf Pack image.jpg without any archive paths, zip -j [file_name].zip image.jpg Transfer image.jpg to archives while keeping all current files.,mv -n image.jpg archives Pack music and all its files into archive, zip -r music music Compress files using gzip, find . -type f -execdir gzip {} \ Seek out blocking gadgets, find . -type b "Duplicate proposal.docx to music_library and keep attributes unchanged, creating a hard link, and making a backup", cp -p -l -b proposal.docx music_library Place audio.mp3 inside of [file_name.zip., zip -u [file_name].zip audio.mp3 Duplicate audio.mp3 to images_backup and force replacement, cp -f audio.mp3 images_backup "Assume destination is a file, move only if it's newer, and ask before replacing executable.exe in downloads.",mv -iTu executable.exe downloads "Make a hard link, backup, and copy report.pdf to photos_backup while maintaining its properties.", cp -p -l -b report.pdf photos_backup "Display directories with comprehensive details, then determine the overall size.",ls -ld */ | du -h --max-depth=0 "Treat the destination as a file, prompt before overwriting database.sql in photos, and print verbose information.",mv -iTv database.sql photos Duplicate projects to documents_backup and include all subdirectories, cp -r projects documents_backup Extract policy.pdf.zip's non-pathable files., unzip -j policy.pdf.zip Recursively display the directory structure,ls -R Recursively list subdirectories and display directory structure with colored output,ls -RdG "Decompress memo.txt.zip with password 'newpass', overwriting existing files, and only extracting files matching pattern '*.doc' to directory projects_backup",unzip -P newpass -o -j -d projects_backup memo.txt.zip '*.doc' "Zip files image.jpg, spreadsheet.xlsx, photo.png into proposal.docx.zip, displaying verbose output",zip -v proposal.docx.zip image.jpg spreadsheet.xlsx photo.png "Out of proposal.docx.zip, remove memo.txt.", zip -d proposal.docx.zip memo.txt Display file sizes in a legible manner,ls -h Display the line counts for photo.png, cat -n photo.png Prompt before overwriting images with executable.exe,mv -i executable.exe images Extract audio.mp3 that is encrypted.Zip file protected with '*.pdf', unzip -P *.pdf audio.mp3.zip "While maintaining its properties, copy contract.pdf to documents_archive and establish a hard link.", cp -p -l contract.pdf documents_archive Show files in reverse order based on the modification time.,ls -ltr "List all files containing ""log"" in their names, including hidden ones",ls -a *log* Put projects and its contents in an archive., zip -r projects projects Ask before replacing memo.txt in backups and treat destination as a file,mv -Ti memo.txt backups List contents of spreadsheet.xlsx with line numbers, cat -n spreadsheet.xlsx Modify the file permissions, find . -type f -execdir chmod 644 {} \ Examine image.jpg.zip for mistakes., unzip -t image.jpg.zip Clone document.docx to temp_folder and prompt for permission to overwrite, cp -i document.docx temp_folder "Zip files configuration.ini, contract.pdf, presentation.pptx into report.pdf.zip, using compression level 3",zip -3 report.pdf.zip configuration.ini contract.pdf presentation.pptx Show the file's inode numbers.,ls -i Zip video.mp4 disregards the directory hierarchy, zip -j [file_name].zip video.mp4 List directories instead of their contents,ls -d Print document.docx with non-printing characters visible, cat -v document.docx Make a hard link and clone database.sql to templates_backup while preserving attributes., cp -p -l database.sql templates_backup Clone temp to templates_backup along with its subdirectories, cp -r temp templates_backup Transfer document.docx to archive by creating a hard link, cp -l document.docx archive Extract the files from image.jpg.zip by changing the directory to images_backup., unzip -C images_backup image.jpg.zip "For each file name, create a backup, a hard link, and mirror it to the destination directory while preserving its properties.", cp -p -l -b [file_name] [destination_directory] Files will be shown sorted by size.,ls -S "Make 'projects', copy a file 'audio.mp3' into it, and then delete the original file.",mkdir /projects/ | cp /audio.mp3 /projects/ | rm /audio.mp3 Search for files with names ending in '.doc' and larger than 500KB,"find . -type f -name ""*.doc"" -size +500k" Transfer presentation.pptx to documents_backup and maintain its attributes, cp -p presentation.pptx documents_backup Duplicate audio.mp3 to reports_archive keeping all attributes,cp -a audio.mp3 reports_archive "Save a backup of image.jpg, do not overwrite, and move only if newer",mv -nbu image.jpg [directory_name] Transfer policy.pdf to downloads without erasing any formerly stored files.,mv -n policy.pdf downloads "Ask before replacing script.py in logs, treat destination as file, and show verbose feedback",mv -TiV script.py logs Duplicate memo.txt to documents_backup by creating hard links, cp -l memo.txt documents_backup Update existing files with newer versions from contract.pdf.zip, unzip -U contract.pdf.zip Show suppressed buffered output for script.py, cat -u script.py Check for updates and add script.py to policy.pdf.zip, zip -u policy.pdf.zip script.py Find directories with names containing 'backup' and not writable by others,"find . -type d -name ""*backup*"" ! -perm -o=w" Transfer downloads and its contents to logs_archive recursively, cp -r downloads logs_archive List files one per line,ls -1 Update existing files in image.jpg.zip, zip -u image.jpg.zip [file1] List files in order of file size,ls -S "Include directories first, then files.",ls --group-directories-first Search for files with names containing 'log' and created in the last 24 hours,"find . -type f -name ""*log*"" -ctime -1" "Package files database.sql, contract.pdf, audio.mp3 into image.jpg.zip, using compression level 3, silently",zip -3 -q image.jpg.zip database.sql contract.pdf audio.mp3 Add and move document.docx to image.jpg.zip, zip -m image.jpg.zip document.docx Print proposal.docx without error messages, cat -q proposal.docx Display files in descending order of size.,ls -S Transfer database.sql to documents_backup and forcefully replace existing files, cp -f database.sql documents_backup Move contract.pdf to backups and provide verbose output,mv -v contract.pdf backups Print the file's inode numbers.,ls -i Take files out of script.py.zip and replace any files that already exist., unzip -o script.py.zip Delete files with name image.jpg, find . -name image.jpg -delete "Files are sorted in reverse order based on size and modification time, producing coloured output.",ls -SltrG Display the contents of spreadsheet.xlsx with the repeated blank lines disabled, cat -s spreadsheet.xlsx Duplicate audio.mp3 to downloads_archive and overwrite existing files forcibly, cp -f audio.mp3 downloads_archive silently list the contents of executable.exe, cat -q executable.exe "Extract spreadsheet.xlsx.zip with password '123pass', preserving permissions, overwriting existing files, and extracting symbolic links to directory logs_archive",unzip -P 123pass -K -o -l -d logs_archive spreadsheet.xlsx.zip Display the output in colour.,ls -G Transfer presentation.pptx to music solely in cases where it is not in use or is more recent.,mv -u presentation.pptx music Display hidden files and folders in a lengthy format with detailed information and coloured output.,ls -alG "Sort the files in the list according to size, and show the file sizes in a legible manner.",ls -Sh Duplicate database.sql to scripts_backup and keep attributes unchanged while creating a hard link, cp -p -l database.sql scripts_backup Display files in order of modification time.,ls -t "Extract script.py.zip with password 'newpass123', extracting files matching pattern '*.txt', quietly, and testing archive integrity only to directory photos_backup",unzip -P newpass123 -j -q -t -d photos_backup script.py.zip '*.txt' Check image.jpg.zip for integrity, zip -T image.jpg.zip Display non-printing characters while listing the contents of policy.pdf, cat -v policy.pdf Turn on colour output.,ls -G "List every file whose name begins with ""image"" and displays the inode numbers.",ls -i image* "Display report.pdf, showing tabs as '^I'",cat -T report.pdf Overwrite existing files in backups with image.jpg,mv -f image.jpg backups Print report.pdf with tabs represented as ^I, cat -T report.pdf "Copy all files from 'templates' to 'scripts', then compress them into a zip file named 'spreadsheet.xlsx.zip'.",cp /templates/* /scripts/ | zip -r /scripts/spreadsheet.xlsx.zip /scripts/* Look for metaphorical connections., find . -type l Transfer files to archive from downloads and add a timestamp to the filename,"find downloads -type f -exec sh -c 'mv ""$1"" ""$2/$(basename ""$1"")_$(date +%Y%m%d_%H%M%S)""' sh {} archive \;" "Make directory ""databases"" and move files from ""databases"" to ""documents_archive"".",mkdir databases && mv databases/* documents_archive silently list the contents of spreadsheet.xlsx, cat -q spreadsheet.xlsx Zip logs and subdirectories, zip -r logs logs Show file details in long format,ls -l Show image.jpg contents with repeated empty lines suppressed, cat -s image.jpg Files should be sorted with human-readable sizes in reverse order based on size and modification time.,ls -Sltrh "Move script.py to backups with force, but prompt for confirmation",mv -if script.py backups Duplicate database.sql to reports_archive and request confirmation before overwriting, cp -i database.sql reports_archive Extract and update files with newer versions from report.pdf.zip, unzip -U report.pdf.zip "Make a backup of memo.txt, don't replace it, and only move it if it's more recent.",mv -nbu memo.txt [directory_name] Display document.docx with non-printing characters, cat -v document.docx Ask before replacing memo.txt in backups and treat destination as a file,mv -Ti memo.txt backups Copy configuration.ini to photos_backup and preserve all attributes,cp -a configuration.ini photos_backup Copy files modified in the last 7 days from presentations to music_library,find presentations -type f -mtime -7 -exec mv {} music_library \; Files from memo.txt.zip should be extracted into downloads_archive., unzip -d downloads_archive memo.txt.zip Find files with a size of precisely 50 bytes., find . -size 50c Show contents of contract.pdf.zip, unzip -l contract.pdf.zip "Make a copy of policy.pdf in downloads_archive, but before overwriting, get permission.", cp -i policy.pdf downloads_archive "Move files from ""databases"" to ""templates_backup"" after creating the directory ""databases"".",mkdir databases && mv databases/* templates_backup Transfer policy.pdf to downloads without erasing any formerly stored files.,mv -n policy.pdf downloads Display files with additional details,ls -l Replicate script.py to backup and create backups if files exist,cp -b script.py backup Change directory to backup and extract files from audio.mp3.zip, unzip -C backup audio.mp3.zip Don't use image.jpg to replace any existing files in reports.,mv -n image.jpg reports Print the contents of proposal.docx with non-blank line numbering., cat -b proposal.docx Clone policy.pdf with preserving attributes to projects_backup., cp -p policy.pdf projects_backup Create new archive proposal.docx.zip from video.mp4, zip -c proposal.docx.zip video.mp4 Mirror proposal.docx to photos_backup with attributes intact,cp -a proposal.docx photos_backup Display the contents of audio.mp3,cat audio.mp3 Enter '*.mp3' as the password to extract video.mp4.zip., unzip -P *.mp3 video.mp4.zip Search for directories with names starting with 'backup' and not owned by the user 'admin',"find . -type d -name ""backup*"" ! -user admin" Test document.docx.zip for errors, unzip -t document.docx.zip "Unarchive policy.pdf.zip, quietly and extracting to standard output to directory backup",unzip -q -p -d backup policy.pdf.zip Show directories without listing their contents,ls -d Move audio.mp3 to music only if it's newer or doesn't already exist,mv -u audio.mp3 music Files should be sorted with human-readable sizes in reverse order based on size and modification time.,ls -Sltrh Recursively list the directory tree,ls -R Update contract.pdf if newer in spreadsheet.xlsx.zip, zip -u spreadsheet.xlsx.zip contract.pdf "Extend the format of hidden files and folders, then delete the owner data.","ls -al | awk '{$2=$3=$4=""""; print $0}'" Pack music and all its files into archive, zip -r music music "Without showing the results, extract photo.png.zip", unzip -q photo.png.zip "Open memo.txt and extract encrypted.zip using the ""*.png"" password", unzip -P *.png memo.txt.zip "For each file name, create a backup, a hard link, and mirror it to the destination directory while preserving its properties.", cp -p -l -b [file_name] [destination_directory] Gently unzip the contents of video.mp4.zip., unzip -q video.mp4.zip Extract files from video.mp4.zip into documents_archive, unzip -d documents_archive video.mp4.zip Take out only the most recent files from image.jpg.zip., unzip -U image.jpg.zip "Before forcibly transferring executable.exe to music, make a backup of it.",mv -bf executable.exe music Clone policy.pdf with preserving attributes to projects_backup., cp -p policy.pdf projects_backup Check for updates and add spreadsheet.xlsx to executable.exe.zip, zip -f executable.exe.zip spreadsheet.xlsx Extract files and overwrite existing files from script.py.zip, unzip -o script.py.zip Recursive copying is used to transfer logs to logs_archive while maintaining attributes., cp -r -p logs logs_archive Transfer files from templates to music_library that have been modified in the last 24 hours.,find templates -type f -mtime -1 -exec mv {} music_library \; Sort files in a list according to size.,ls -S Copy files to images, find . -name [file_name] -exec cp {} images \ Make a fresh archive with memo.txt.zip from database.sql, zip -c memo.txt.zip database.sql Preserve attributes of policy.pdf while copying to archive, cp -p policy.pdf archive Locate files named photo.png, find . -name photo.png Check for corruption with report.pdf.zip., zip -T report.pdf.zip Put policy.pdf in the designated directory. thinking about it as a file rather than a directory,mv -T policy.pdf [directory_name] Files should be sorted descendingly.,ls -r Move configuration.ini into images in the same way that you would any other file.,mv -T configuration.ini images See what's in database.sql.zip, unzip -l database.sql.zip "List subdirectories recursively, with human-readable sizes, colours, and extensive information.",ls -RdlhG Find files with names containing 'important' and modified in the last 30 days,"find . -type f -name ""*important*"" -mtime -30" Do not overwrite archives with video.mp4,mv -n video.mp4 archives "Without asking, make a backup, and force copy video.mp4 to scripts_backup while maintaining attributes", cp -f -p -b video.mp4 scripts_backup "If executable.exe is more recent, update it in configuration.ini.zip.", zip -f configuration.ini.zip executable.exe Pack document.docx into proposal.docx.zip, zip -c proposal.docx.zip document.docx "Copy contract.pdf to documents_backup, making a backup copy of the current files.", cp -b -p contract.pdf documents_backup "Archive files document.docx, memo.txt, executable.exe into memo.txt.zip, excluding '*.log' files, storing symbolic links",zip -x '*.log' -y memo.txt.zip document.docx memo.txt executable.exe Print a new line for every file.,ls -1 Search for standard files., find . -type f Duplicate database.sql to reports_archive and request confirmation before overwriting, cp -i database.sql reports_archive List file sizes in human-readable format,ls -h Look through directories., find . -type d Extract files from memo.txt.zip into backup, unzip -d backup memo.txt.zip "If spreadsheet.xlsx is more recent or does not already exist in presentations, move it there.",mv -u spreadsheet.xlsx presentations Mirror photo.png to output and create backups of existing files,cp -b photo.png output Search for symbolic links, find . -type l Output the last 50 lines of contract.pdf,cat contract.pdf | tail -n 50 Show directories themselves along with detailed information,ls -ld List files with each on a new line,ls -1 Output the first 25 lines of audio.mp3,cat audio.mp3 | head -n 25 "Move templates to logs_archive, making a backup of all currently stored files.", cp -b -r templates logs_archive Insert presentation.pptx inside the document.docx.zip archive., zip -u document.docx.zip presentation.pptx "Create directories templates, logs, downloads and parent directories if they do not exist",mkdir -p templates && mkdir -p logs && mkdir -p downloads List the contents of database.sql while suppressing buffered output., cat -u database.sql First-listed show directories,ls --group-directories-first Print inode numbers of files,ls -i Show line endings for audio.mp3, cat -E audio.mp3 Display files sorted by modification time in reverse order,ls -ltr "Assume destination is a file, move only if it's newer, and ask before replacing executable.exe in downloads.",mv -iTu executable.exe downloads Sort files based on size,ls -S Only use memo.txt in place of downloads if it is less than or equal to that directory.,mv -u memo.txt downloads Find files with names containing 'report' and not executable by others,"find . -type f -name ""*report*"" ! -perm -o=x" Search for files with names containing 'image' and with read permissions for the group,"find . -type f -name ""*image*"" -perm /g=r" "Display hidden files and directories in long format, then show only the permissions",ls -al | awk '{print $1}' Move files to backups, find . -name [file_name] -execdir mv {} backups \ Display directories themselves with comprehensive details.,ls -ld Remove memo.txt.zip without showing the result, unzip -q memo.txt.zip Pack policy.pdf without any archive paths, zip -j [file_name].zip policy.pdf Unzip files from script.py.zip quietly, unzip -q script.py.zip Force copy executable.exe to reports_archive without prompting, cp -f executable.exe reports_archive "Create a directory named 'backups', copy all files from 'backups' to it, then move them to 'videos_backup'.",mkdir /backups/ | cp /backups/* /backups/ | mv /backups/* /videos_backup/ Make script.py a hard link in images_backup., cp -l script.py images_backup Show file information in long listing format,ls -l "Zip files presentation.pptx, memo.txt, policy.pdf into report.pdf.zip, using password 'pass123', excluding '*.tmp' files",zip -P pass123 -x '*.tmp' report.pdf.zip presentation.pptx memo.txt policy.pdf Overwrite existing files without prompting when extracting report.pdf.zip, unzip -o report.pdf.zip List the lines that make up executable.exe in the list., cat -n executable.exe Create a hard link of proposal.docx in documents_backup, cp -l proposal.docx documents_backup Move policy.pdf to presentations and overwrite existing files,mv -f policy.pdf presentations List the contents of proposal.docx while suppressing buffered output., cat -u proposal.docx Find files with permissions set to 777,find . -type f -perm 777 Zip projects recursively, zip -r projects projects Search for empty files, find . -type f -empty "Prompt before overwriting presentation.pptx in reports, treat destination as file, and move only if newer",mv -iuT presentation.pptx reports Create zip of reports and its contents, zip -r reports reports Extract encrypted spreadsheet.xlsx.zip with password '*.exe', unzip -P *.exe spreadsheet.xlsx.zip Update existing files with newer versions from contract.pdf.zip, unzip -U contract.pdf.zip Prompt for confirmation before replacing policy.pdf in scripts,mv -i policy.pdf scripts Display directories listed before files,ls --group-directories-first "If files already exist, replicate script.py to backup and make backups.",cp -b script.py backup Take report.pdf out of the audio.mp3.zip., zip -d audio.mp3.zip report.pdf Recursively list subdirectories with colored output and detailed information,ls -Rdl Show line numbers for video.mp4, cat -n video.mp4 Mirror memo.txt to temp_folder with attributes intact and creating a hard link, cp -p -l memo.txt temp_folder Display files with output in colour.,ls -G Transfer report.pdf to templates_backup and ask for user confirmation if files exist,cp -i report.pdf templates_backup Make a directory called logs and output verbosely,mkdir -v logs Rename presentation.pptx to images using force.,mv -f presentation.pptx images "Make a hard link, backup, and duplicate database.sql to images_backup while maintaining all attributes.", cp -p -l -b database.sql images_backup "Treat the destination as a file, prompt before overwriting contract.pdf in logs, and print verbose information.",mv -iTv contract.pdf logs List directories instead of their contents,ls -d Show the inode numbers for files.,ls -i "If audio.mp3 is more recent, update it in executable.exe.zip.", zip -f executable.exe.zip audio.mp3 Copy spreadsheet.xlsx to documents_backup and prompt before overwriting if necessary,cp -i spreadsheet.xlsx documents_backup "If files already exist, replicate script.py to backup and make backups.",cp -b script.py backup Files from memo.txt.zip should be extracted into output., unzip -d output memo.txt.zip "Before overwriting, move image.jpg to temp and prompt.",mv -i image.jpg temp Print executable.exe while preventing the display of several blank lines., cat -s executable.exe Delete memo.txt from video.mp4.zip, zip -d video.mp4.zip memo.txt "After placing configuration.ini inside executable.exe.zip, remove it.", zip -u executable.exe.zip configuration.ini Check for updates and add image.jpg to script.py.zip, zip -f script.py.zip image.jpg Display contents of script.py.zip, unzip -l script.py.zip Show memo.txt with suppressed buffered output, cat -u memo.txt "If the parent directories and directory downloads don't already exist, create them with verbose output.",mkdir -p -v downloads Into image.jpg put contract.pdf.Zip and remove, zip -u image.jpg.zip contract.pdf Mirror photo.png to output and create backups of existing files,cp -b photo.png output Ignore directory structure when extracting files from script.py.zip, unzip -j script.py.zip List file sizes in a format suitable for humans,ls -h Update database.sql if newer in database.sql.zip, zip -u database.sql.zip database.sql Files should be shown in reverse sorted order.,ls -r Sort files in descending order,ls -r File compression with gzip, find . -type f -exec gzip {} \ Verify spreadsheet.xlsx.zip for integrity, zip -T spreadsheet.xlsx.zip Show executable.exe with line breaks included, cat -E executable.exe Create a backup and force move proposal.docx to temp,mv -fb proposal.docx temp Show file sizes in human-readable units,ls -h List spreadsheet.xlsx contents with suppression of repeated empty lines, cat -s spreadsheet.xlsx Zip images repeatedly, zip -r images images Find files owned by the user and group *.ini,find . -type f -user *.ini -group *.ini "Ask before replacing video.mp4 in archives, treat destination as file, and move only if newer",mv -iTu video.mp4 archives Transfer video.mp4 to music and include detailed comments.,mv -v video.mp4 music Move executable.exe to music and print verbose feedback,mv -v executable.exe music "Move proposal.docx to downloads_archive, then ask to overwrite interactively.", cp -i proposal.docx downloads_archive "Make a list of the files in the ""presentations"" directory after creating it.",mkdir presentations && cp presentations/* [destination_directory] "Duplicate presentation.pptx to archive with user confirmation for overwrite, preserving attributes, and creating a backup", cp -i -p -b presentation.pptx archive Ignore directory structure when extracting files from script.py.zip, unzip -j script.py.zip Recursively compress projects, zip -r projects projects List contents of script.py with line endings, cat -E script.py Move image.jpg to presentations only if it's newer or doesn't exist,mv -u image.jpg presentations Refresh contract.pdf in the zip file executable.exe., zip -f executable.exe.zip contract.pdf "Archive files report.pdf, spreadsheet.xlsx, contract.pdf into configuration.ini.zip, compressing only '*.txt' files, storing symbolic links",zip -n '*.txt' -y configuration.ini.zip report.pdf spreadsheet.xlsx contract.pdf Search for files modified exactly 30 days ago, find . -mtime 30 Delete files with name presentation.pptx, find . -name presentation.pptx -execdir rm {} \ Fill spreadsheet.xlsx with contract.pdf.zip, zip -c spreadsheet.xlsx.zip contract.pdf "Out of image.jpg.zip, remove video.mp4.", zip -d image.jpg.zip video.mp4 "Make a symbolic link named ""alias"" pointing to ""music_library"" and establish a new directory called ""databases"".",mkdir databases && ln -s music_library alias "Keep a copy of memo.txt, avoid overwriting, and provide detailed feedback.",mv -nbv memo.txt [directory_name] Sort the files according to their sizes.,ls -S Search for files between 1GB and 2GB in size, find . -size +1G -size -2G Sort files in a list according to size.,ls -S Maintain directory structure and backup logs to archive, cp -r logs archive Output the last 15 lines of presentation.pptx,cat presentation.pptx | tail -n 15 "Make a backup, then transfer presentation.pptx forcibly to videos.",mv -fb presentation.pptx videos "Make a hard link, backup, and replicate report.pdf to music_library while preserving its properties.", cp -p -l -b report.pdf music_library Look for files bigger than one megabyte., find . -size +1M Examine database.sql.zip for consistency., zip -T database.sql.zip Find files with names containing 'data' and not readable by others,"find . -type f -name ""*data*"" ! -perm -o=r" Display non-printing characters while listing the contents of script.py, cat -v script.py Move executable.exe to music_library and yank out the current files with force., cp -f executable.exe music_library List contract.pdf contents with suppression of repeated empty lines, cat -s contract.pdf Test integrity of spreadsheet.xlsx.zip, zip -T spreadsheet.xlsx.zip Transfer the 'document.docx' file to the 'projects_backup' directory.,cp /document.docx /projects_backup/ Find the document.docx files., find . -name document.docx Examine audio.mp3.zip for mistakes., zip -T audio.mp3.zip List contents of script.py.zip without extracting, unzip -l script.py.zip Display every character in the control set for video.mp4, cat -A video.mp4 "Transfer images to scripts_backup with recursive copying, preserving attributes, and creating a backup", cp -r -p -b images scripts_backup Files should be displayed in coloured lists.,ls -G "Unarchive policy.pdf.zip, quietly and extracting to standard output to directory backup",unzip -q -p -d backup policy.pdf.zip "Make 'projects', copy a file 'audio.mp3' into it, and then delete the original file.",mkdir /projects/ | cp /audio.mp3 /projects/ | rm /audio.mp3 "Force copy presentation.pptx to music_library without prompting, preserving attributes, and creating a backup", cp -f -p -b presentation.pptx music_library Test integrity of presentation.pptx.zip, unzip -t presentation.pptx.zip Take spreadsheet.xlsx out of the script.py.zip., zip -d script.py.zip spreadsheet.xlsx Place document.docx in the policy.pdf.zip archive., zip -m policy.pdf.zip document.docx Show line numbers for video.mp4, cat -n video.mp4 List the contents of database.sql using the ^tabsI, cat -T database.sql "Make a backup of presentation.pptx, relocate it only if it's more recent, and don't replace it.",mv -bnu presentation.pptx [directory_name] Display hidden files and directories in long format with detailed information and human-readable sizes,ls -alh Display video.mp4 in quiet mode, cat -q video.mp4 "Before forcibly transferring report.pdf to photos, make a backup of it.",mv -bf report.pdf photos Display files in reverse alphabetical order,ls -r Locate files modified more than 1 year ago, find . -mtime +365 Show subdirectories recursively,ls -R "Create a backup of policy.pdf, do not overwrite, and move only if newer",mv -bnu policy.pdf [directory_name] Show hidden files and folders in a lengthy format with rich colours and details.,ls -alG Extract policy.pdf.zip with no password to directory templates_backup,unzip -d templates_backup policy.pdf.zip Create directory music with verbose output,mkdir -v music List contents of executable.exe with all control characters displayed, cat -A executable.exe Reverse the default sorting order,ls -r Display audio.mp3 with tabs as ^I, cat -T audio.mp3 Find directories with names starting with 'project' and not modified in the last 90 days,"find . -type d -name ""project*"" -mtime +90" "Show every file, even those that are hidden.",ls -a "Transfer archives to downloads_archive and, if required, prompt before overwriting",cp -ir archives downloads_archive Zip projects recursively, zip -r projects projects Extract newer files from document.docx.zip, unzip -U document.docx.zip "Mirror executable.exe to output with attributes intact, creating a hard link, and making a backup", cp -p -l -b executable.exe output Provide password '*.py' to extract document.docx.zip, unzip -P *.py document.docx.zip Display every character in the control set for memo.txt, cat -A memo.txt Extract encrypted presentation.pptx.zip with password '*.doc*', unzip -P *.doc* presentation.pptx.zip Never use audio.mp3 in place of databases.,mv -n audio.mp3 databases Move image.jpg to archive while preserving its properties., cp -p image.jpg archive Find directories with names containing 'backup' and modified in the last 7 days,"find . -type d -name ""*backup*"" -mtime -7" Place presentation.pptx.zip inside audio.mp3., zip -m presentation.pptx.zip audio.mp3 Display memo.txt with the error messages hidden, cat -q memo.txt Verify document.docx.zip's integrity., zip -T document.docx.zip Locate files named image.jpg, find . -name image.jpg Files in database.sql.zip are displayed., unzip -l database.sql.zip Extract files from spreadsheet.xlsx.zip into templates_backup, unzip -d templates_backup spreadsheet.xlsx.zip Backup music to projects_backup and preserve directory structure, cp -r music projects_backup Turn on output that is coloured.,ls -G Extract files from presentation.pptx.zip and overwrite existing files, unzip -o presentation.pptx.zip "Clone database.sql to templates_backup with attribute preservation, creating a hard link, and making a backup", cp -p -l -b database.sql templates_backup Look for metaphorical connections., find . -type l "Package files report.pdf, memo.txt, video.mp4 into configuration.ini.zip, using compression level 3, storing symbolic links",zip -3 -y configuration.ini.zip report.pdf memo.txt video.mp4 Extract encrypted spreadsheet.xlsx.zip with password '*.mp3', unzip -P *.mp3 spreadsheet.xlsx.zip "Duplicate presentation.pptx to archive with user confirmation for overwrite, preserving attributes, and creating a backup", cp -i -p -b presentation.pptx archive Update photo.png in image.jpg.zip if newer, zip -f image.jpg.zip photo.png Place configuration.ini in the report.pdf archive.zip, zip -m report.pdf.zip configuration.ini Copy report.pdf to logs_archive while maintaining its properties., cp -p report.pdf logs_archive Make script.py.zip with video.mp4 in it., zip -c script.py.zip video.mp4 Print each file separately,ls -1 Transfer audio.mp3 to templates as if it were a regular file,mv -T audio.mp3 templates "Uncompress database.sql.zip, extracting symbolic links, to directory music_library",unzip -l -d music_library database.sql.zip List files in order of last modification time,ls -t Display the contents of image.jpg with the repeated blank lines disabled, cat -s image.jpg "Assume destination is a file, move only if it's newer, and ask before replacing script.py in databases.",mv -iTu script.py databases Search for files named contract.pdf, find . -name contract.pdf Display directories listed before files,ls --group-directories-first "Display every file, even those that are hidden.",ls -a Add and move script.py to executable.exe.zip, zip -m executable.exe.zip script.py "Create directory ""templates"" and move files matching pattern ""*.jpg"" to it.",mkdir templates && mv **.jpg* templates Copy database.sql to videos_backup and prompt before overwriting if necessary,cp --interactive database.sql videos_backup "Before forcibly transferring report.pdf to photos, make a backup of it.",mv -bf report.pdf photos Extract the files from audio.mp3.zip without a directory structure., unzip -j audio.mp3.zip "Duplicate proposal.docx to music_library and keep attributes unchanged, creating a hard link, and making a backup", cp -p -l -b proposal.docx music_library "Sort all files that start with ""data"" backwards.",ls -r data* Show line numbers for audio.mp3, cat -n audio.mp3 "Save a backup of configuration.ini, do not overwrite, and move only if newer",mv -nbu configuration.ini [directory_name] Create directory music with verbose output,mkdir -v music Show configuration.ini with line numbers that aren't blank., cat -b configuration.ini "Extract spreadsheet.xlsx.zip with password '123pass', preserving permissions, overwriting existing files, and extracting symbolic links to directory logs_archive",unzip -P 123pass -K -o -l -d logs_archive spreadsheet.xlsx.zip Forcefully move proposal.docx to databases without prompting,mv -f proposal.docx databases Print proposal.docx with all control characters visible, cat -A proposal.docx "Transfer contract.pdf to projects, replacing current files without permission",mv -f contract.pdf projects Force copy script.py to videos_backup and create a backup of existing files, cp -b -f script.py videos_backup "Make ""documents"" the directory and remove ""backup_old2.docx"" from it.",mkdir documents && ls | grep -v backup_old2.docx Search for files with names containing 'backup' and created in the last 7 days,"find . -type f -name ""*backup*"" -ctime -7" Show inode numbers of files,ls -i Pack image.jpg without any archive paths, zip -j [file_name].zip image.jpg Erase image.jpg from spreadsheet.xlsx.zip, zip -d spreadsheet.xlsx.zip image.jpg Print inode numbers for each file,ls -i Search for files with names starting with 'file' and not modified in the last 7 days,"find . -type f -name ""file*"" -mtime +7" Display directories before files,ls --group-directories-first "Backup archives to music_library and maintain its attributes with recursive copying, creating a backup", cp -r -p -b archives music_library Replicate proposal.docx to templates_backup while retaining its attributes, cp -p proposal.docx templates_backup Files should be shown sorted by last modification time.,ls -t List directory contents including hidden files and directories,ls -a Include hidden files in the list of files.,ls -a "Backup databases to backup and maintain its attributes with recursive copying, creating a backup", cp -r -p -b databases backup Take remove the files from contract.pdf.zip that provide verbose output., unzip -v contract.pdf.zip Mirror database.sql to images_backup and backup existing files, cp -b -p database.sql images_backup "Concatenate configuration.ini and script.py, numbering all output lines",cat -n configuration.ini script.py Extract image.jpg.zip without displaying output, unzip -q image.jpg.zip Backup logs to music_library and maintain its attributes with recursive copying, cp -r -p logs music_library Extract only newer files from audio.mp3.zip, unzip -U audio.mp3.zip Replicate proposal.docx to templates_backup while retaining its attributes, cp -p proposal.docx templates_backup "List all the contents in a directory, including any hidden files.",ls -a "Before replacing image.jpg in backups, ask for confirmation.",mv -i image.jpg backups Transfer the files to presentations, find . -name [file_name] -execdir mv {} presentations \ Transfer files from templates to music_library that have been modified in the last 24 hours.,find templates -type f -mtime -1 -exec mv {} music_library \; Duplicate video.mp4 to reports_archive with a backup if files exist, cp -b -i video.mp4 reports_archive Display directories without a content list.,ls -d Clone backups and all of its subdirectories to temp_folder., cp -r backups temp_folder "Prompt before overwriting image.jpg in downloads, treating destination as file",mv -iT image.jpg downloads Copy photo.png to documents_backup and prompt before overwriting if necessary,cp --interactive photo.png documents_backup Move document.docx to videos_backup and verify overwriting interactively., cp -i document.docx videos_backup List the files in order of modification date.,ls -t compel Make a backup of the current files and copy script.py to downloads_archive., cp -b -f script.py downloads_archive "Create a ""videos"" directory and list the files within it.",mkdir videos && cp videos/* [destination_directory] Mirror proposal.docx to photos_backup with attributes intact,cp -a proposal.docx photos_backup List directories before files,ls --group-directories-first Take files out of spreadsheet.xlsx.zip and replace any files that already exist., unzip -o spreadsheet.xlsx.zip Check database.sql.zip for integrity, unzip -t database.sql.zip "List all files having ""notes"" in their names, sorted by size",ls -S *notes* "Make a backup copy of proposal.docx and duplicate it to documents_backup with user approval to overwrite, preserve attributes, and overwrite", cp -i -p -b proposal.docx documents_backup Create directory logs and parent directories if they do not exist,mkdir -p logs List directories before files in the display,ls --group-directories-first Freshen photo.png in memo.txt.zip, zip -f memo.txt.zip photo.png Show memo.txt with every control character present., cat -A memo.txt "Release database.sql.zip, excluding temp_file2.txt, verbose output, and extracting symbolic links to directory archive",unzip -x temp_file2.txt -v -l -d archive database.sql.zip "Backup templates to reports_archive and maintain its attributes with recursive copying, creating a backup", cp -r -p -b templates reports_archive Transfer data to templates, find . -name [file_name] -execdir cp {} templates \ Find the specified pipes., find . -type p List file sizes in human-readable format,ls -h "List subdirectories recursively, providing coloured output and comprehensive details.",ls -Rdl Search for files with names containing 'log' and created in the last 24 hours,"find . -type f -name ""*log*"" -ctime -1" "Make a backup copy of proposal.docx and duplicate it to documents_backup with user approval to overwrite, preserve attributes, and overwrite", cp -i -p -b proposal.docx documents_backup List the contents of configuration.ini using the ^tabsI, cat -T configuration.ini Zip memo.txt ignoring directory structure, zip -j [file_name].zip memo.txt Extract encrypted spreadsheet.xlsx.zip with password '*.exe', unzip -P *.exe spreadsheet.xlsx.zip Show files arranged by modification time,ls -t "Forcefully move photo.png to temp, but prompt before overwriting",mv -fi photo.png temp Transfer the 'document.docx' file to the 'projects_backup' directory.,cp /document.docx /projects_backup/ List directories before files in the display,ls --group-directories-first Look for files with name proposal.docx, find . -name proposal.docx "Transfer logs to backup with recursive copying, preserving attributes, and creating a backup", cp -r -p -b logs backup Show suppressed buffered output for script.py, cat -u script.py Copy database.sql to photos_backup and make sure to have permission before deleting old files., cp -i database.sql photos_backup Zip presentation.pptx without any folder organization, zip -j [file_name].zip presentation.pptx Files are sorted by date of modification.,ls -t Backup presentation.pptx to logs_archive and maintain its attributes, cp -p presentation.pptx logs_archive "Archive files presentation.pptx, script.py, presentation.pptx into document.docx.zip, using compression level 6, excluding '*.tmp' files",zip -6 -x '*.tmp' document.docx.zip presentation.pptx script.py presentation.pptx Find the document.docx files., find . -name document.docx Look for figurative connections., find . -type l "Recursive copying is used to move scripts to downloads_archive, maintaining attributes, and making a backup.", cp -r -p -b scripts downloads_archive Show photo.png with every control character present., cat -A photo.png Display hidden files and directories in long format,ls -al Make script.py.zip with video.mp4 in it., zip -c script.py.zip video.mp4 Clone policy.pdf to output and make backups of existing files,cp -b policy.pdf output "Archive files presentation.pptx, video.mp4, database.sql into report.pdf.zip, using password 'secure123'",zip -P secure123 report.pdf.zip presentation.pptx video.mp4 database.sql List file sizes in a way understandable to humans,ls -h Files can be sorted by size.,ls -S Copy archives recursively to music_library, cp -r archives music_library Move configuration.ini to proposal.docx.zip and add it., zip -m proposal.docx.zip configuration.ini "List subdirectories in a recursive manner with comprehensive details, and then look for a certain file.","ls -Rl | grep ""filename""" Put every file on a separate line.,ls -1 Talkative: document.docx should be moved to logs.,mv -v document.docx logs "Make a hard link, backup, and copy report.pdf to logs_archive while maintaining its properties.", cp -p -l -b report.pdf logs_archive Locate files smaller than 100KB, find . -size -100k Create a backup and force move proposal.docx to temp,mv -fb proposal.docx temp Establish a hard link to move policy.pdf to photos_backup., cp -l policy.pdf photos_backup Overwrite existing files without prompting when extracting report.pdf.zip, unzip -o report.pdf.zip Provide password '*.pdf' to extract image.jpg.zip, unzip -P *.pdf image.jpg.zip Compress temp and its contents, zip -r temp temp Replicate photo.png to backup and ask before replacing existing files, cp -i photo.png backup "While maintaining its properties, copy contract.pdf to documents_archive and establish a hard link.", cp -p -l contract.pdf documents_archive Make a backup of the current files and copy photo.png to logs_archive.,cp -b photo.png logs_archive Display directories prior to files,ls --group-directories-first Reverse the order of file listing,ls -r Do not replace downloads with audio.mp3,mv -n audio.mp3 downloads Remove spreadsheet.xlsx from database.sql.zip, zip -d database.sql.zip spreadsheet.xlsx Only use memo.txt in place of downloads if it is less than or equal to that directory.,mv -u memo.txt downloads View contents of policy.pdf.zip, unzip -l policy.pdf.zip Place report.pdf in music without considering it as a directory,mv -T report.pdf music Zip memo.txt without directory structure, zip -j [file_name].zip memo.txt Extract files from spreadsheet.xlsx.zip into templates_backup, unzip -d templates_backup spreadsheet.xlsx.zip Display the contents of spreadsheet.xlsx with the repeated blank lines disabled, cat -s spreadsheet.xlsx "Free photo.png.zip, listing files only, to directory photos_backup",unzip -l -d photos_backup photo.png.zip Transfer video.mp4 to documents_backup while maintaining attributes,cp -a video.mp4 documents_backup "Make a hard link, backup, and duplicate report.pdf to photos_backup while maintaining all attributes.", cp -p -l -b report.pdf photos_backup "Before replacing files, mirror database.sql to output and ask questions interactively.", cp -i database.sql output "Zip files image.jpg, report.pdf, memo.txt into memo.txt.zip, including empty directories",zip -r0 memo.txt.zip image.jpg report.pdf memo.txt Replicate presentation.pptx to images_backup and prompt for user confirmation,cp -i presentation.pptx images_backup Move the files listed in presentations to documents_backup. maintaining the directory structure,find presentations -type f -exec mv -t documents_backup -- {} + "Uncompress database.sql.zip, extracting symbolic links, to directory music_library",unzip -l -d music_library database.sql.zip Duplicate audio.mp3 to reports_archive keeping all attributes,cp -a audio.mp3 reports_archive Find files larger than 1 megabyte., find . -size +1M "Before replacing, copy database.sql to temp_folder and ask for approval.",cp -i database.sql temp_folder Mirror documents to templates_backup recursively, cp -r documents templates_backup "Make a hard link, backup, and duplicate policy.pdf to documents_archive while maintaining all attributes.", cp -p -l -b policy.pdf documents_archive "Make the directory ""scripts"" and search its contents for files that match the pattern ""*.txt"".","mkdir scripts && find scripts -name ""**.txt*""" "Sort all files that start with ""data"" backwards.",ls -r data* Show directories listed first,ls --group-directories-first Extract files silently from memo.txt.zip, unzip -q memo.txt.zip Find files named presentation.pptx, find . -name presentation.pptx Extract files from photo.png.zip into templates_backup, unzip -d templates_backup photo.png.zip "After displaying hidden files and folders in extended format, just the permissions are visible.",ls -al | awk '{print $1}' Print every file individually.,ls -1 "Take the files out of database.sql.Zip the file, then select backup.", unzip -C backup database.sql.zip Print document.docx with non-printing characters visible, cat -v document.docx Mirror document.docx to temp_folder and overwrite existing files without seeking permission, cp -f document.docx temp_folder "Sort files by size and display file sizes in human-readable format, then find files larger than a certain size",ls -lSh | awk '$5 > 1000000 {print $0}' List files with each on a new line,ls -1 Display hidden files along with normal files,ls -a List files sorted by time of modification,ls -t Find directories modified more than 30 days ago,find . -type d -mtime +30 Check database.sql.zip to maintain integrity, zip -T database.sql.zip Freshen document.docx in database.sql.zip, zip -f database.sql.zip document.docx Delete presentation.pptx from video.mp4.zip, zip -d video.mp4.zip presentation.pptx Find files larger than a given size by sorting files according to size and displaying file sizes in a way that is legible by humans.,ls -lSh | awk '$5 > 1000000 {print $0}' Extract files with verbose mode enabled from contract.pdf.zip, unzip -v contract.pdf.zip Transfer configuration.ini to logs_archive and interactively confirm overwrite while preserving attributes, cp -i -p configuration.ini logs_archive Transfer the files that have been edited within the last seven days from scripts to photos_backup.,find scripts -type f -mtime -7 -exec mv {} photos_backup \; Make a directory called logs and output verbosely,mkdir -v logs Find the document.docx files., find . -name document.docx Enumerate every file in the active directory.,ls -a "The files ""image.jpg, ""contract.pdf"", and ""database.sql"" should be concatenated into the directory ""temp"".",mkdir temp && cat image.jpg contract.pdf database.sql > temp/concatenated_file.txt Search for files modified exactly 30 days ago, find . -mtime 30 "List all files, including hidden files",ls -a Search for files with names starting with 'file' and modified in the last 7 days,"find . -type f -name ""file*"" -mtime -7" Duplicate proposal.docx to scripts_backup with user confirmation for overwrite, cp -i proposal.docx scripts_backup Create directory downloads and parent directories if they do not exist,mkdir -p downloads Recursively list directory contents,ls -R Display hidden folders and files,ls -a "Backup databases to backup and maintain its attributes with recursive copying, creating a backup", cp -r -p -b databases backup Copy presentation.pptx to projects_backup while preserving its attributes and creating a hard link, cp -p -l presentation.pptx projects_backup "Create directory ""presentations"" and zip files ""audio.mp3"", ""document.docx"", ""document.docx"" in it.",mkdir presentations && zip presentations.zip audio.mp3 document.docx document.docx "Extract configuration.ini.zip, but only the most recent files.", unzip -U configuration.ini.zip Print each file's inode number.,ls -i Extract database.sql.zip without displaying output, unzip -q database.sql.zip "Without showing the results, extract photo.png.zip", unzip -q photo.png.zip Find symbolic links in the current directory,find . -type l Show line numbers for document.docx that are not blank., cat -b document.docx Examine spreadsheet.xlsx.zip for mistakes., unzip -t spreadsheet.xlsx.zip "Archive files document.docx, memo.txt, executable.exe into memo.txt.zip, excluding '*.log' files, storing symbolic links",zip -x '*.log' -y memo.txt.zip document.docx memo.txt executable.exe "Save a backup of image.jpg, do not overwrite, and show verbose feedback",mv -nbv image.jpg [directory_name] Transfer video.mp4 to music and include detailed comments.,mv -v video.mp4 music "Ask before replacing script.py in logs, treat destination as file, and show verbose feedback",mv -TiV script.py logs Display characters for database.sql that aren't printed, cat -v database.sql "Transfer executable.exe firmly to backups, ask permission before overwriting, and only move if a newer version is available.",mv -fiu executable.exe backups List contents of policy.pdf with non-printing characters displayed, cat -v policy.pdf File compression with gzip, find . -type f -execdir gzip {} \ Update existing files in configuration.ini.zip, zip -u configuration.ini.zip [file1] Ask for confirmation before overwriting policy.pdf with archives,mv -i policy.pdf archives Transfer script.py to projects_backup with attribute preservation, cp -p script.py projects_backup "To documents, copy the files.", find . -name [file_name] -exec cp {} documents \ Display hidden files and folders in a lengthy format with detailed information and coloured output.,ls -alG "Make a hard link, backup, and copy report.pdf to logs_archive while maintaining its properties.", cp -p -l -b report.pdf logs_archive Recursive copying is used to transfer reports to output while maintaining attributes., cp -r -p reports output "Forcefully move document.docx to reports, prompt before overwriting, and move only if newer",mv -fiu document.docx reports "Concatenate memo.txt and spreadsheet.xlsx, numbering non-blank output lines",cat -b memo.txt spreadsheet.xlsx List directory contents including hidden files and directories,ls -a Find files with names ending in '.log' and larger than 1MB,"find . -type f -name ""*.log"" -size +1M" Fill database.sql with database.sql.zip, zip -c database.sql.zip database.sql Print a new line for every file.,ls -1 Copy proposal.docx to scripts_backup while preserving characteristics., cp -p proposal.docx scripts_backup Sort the files according to their sizes.,ls -S "Create a backup of memo.txt, do not overwrite, display verbose output, and treat destination as file",mv -bnvT memo.txt [directory_name] List the contents of the directories after displaying them with coloured output.,ls -dG */ | xargs ls -lG Make a verbose output directory called databases.,mkdir -v databases List files with each on a new line,ls -1 Test proposal.docx.zip for errors, zip -T proposal.docx.zip Put audio.mp3 on silent display., cat -q audio.mp3 Update existing files in image.jpg.zip, zip -u image.jpg.zip [file1] Place script.py.zip inside spreadsheet.xlsx., zip -m script.py.zip spreadsheet.xlsx "List directories themselves, along with full information and coloured output.",ls -dGl List contents of image.jpg with non-blank line numbers, cat -b image.jpg Move presentation.pptx to databases if it's newer or doesn't already exist there,mv -u presentation.pptx databases Transfer report.pdf to downloads without requesting a copy.,mv -n report.pdf downloads Show line endings for document.docx, cat -E document.docx Display verbose output while extracting image.jpg.zip, unzip -v image.jpg.zip Find files with names starting with 'report' and with read permissions for others,"find . -type f -name ""report*"" -perm /o=r" "Package files image.jpg, configuration.ini, video.mp4 into contract.pdf.zip, excluding '*.tmp' files",zip -x '*.tmp' -r contract.pdf.zip image.jpg configuration.ini video.mp4 "Sort the files by modification time and list all names that finish in "".exe"".",ls -t *.exe List directory tree recursively,ls -R List each file on a single line.,ls -1 Verbose output: Move executable.exe to scripts,mv -v executable.exe scripts List directory contents recursively,ls -R List files in long format,ls -l "Clone database.sql to templates_backup with attribute preservation, creating a hard link, and making a backup", cp -p -l -b database.sql templates_backup Transfer configuration.ini to logs_archive and interactively confirm overwrite while preserving attributes, cp -i -p configuration.ini logs_archive Zip memo.txt disregards the directory hierarchy, zip -j [file_name].zip memo.txt "Retrieve photo.png.zip, overwriting existing files, and only extracting files matching pattern '*.jpg' to directory projects_backup",unzip -o -j -d projects_backup photo.png.zip '*.jpg' "Forcefully move photo.png to temp, but prompt before overwriting",mv -fi photo.png temp Recursively compress projects, zip -r projects projects Print each file's inode number.,ls -i Zip audio.mp3 without any folder organization, zip -j [file_name].zip audio.mp3 Create directory backups with verbose output,mkdir -v backups Verbose: Move image.jpg to projects,mv -v image.jpg projects Delete files with name image.jpg, find . -name image.jpg -delete "Create a directory named ""music"" and list the files in it.",mkdir music && ls music Copy document.docx to music_library while preserving its attributes, cp -p document.docx music_library Into image.jpg put contract.pdf.Zip and remove, zip -u image.jpg.zip contract.pdf "Make a backup copy of executable.exe and duplicate it to music_library with user approval to overwrite, preserve attributes, and overwrite", cp -i -p -b executable.exe music_library Move policy.pdf to databases without overwriting,mv -n policy.pdf databases Display the file's inode numbers.,ls -i Display presentation.pptx with buffered output suppressed, cat -u presentation.pptx Show every file and folder recursively,ls -R "For each file name, create a backup, a hard link, and mirror it to the destination directory while preserving its properties.", cp -p -l -b [file_name] [destination_directory] Show memo.txt with every control character present., cat -A memo.txt "Move database.sql forcefully to reports, ask for permission before overwriting, and treat the destination as a file.",mv -fiT database.sql reports List contents of executable.exe with all control characters displayed, cat -A executable.exe Duplicate memo.txt to downloads_archive and request confirmation before overwriting,cp -i memo.txt downloads_archive "Take the files out of database.sql.Zip the file, then select backup.", unzip -C backup database.sql.zip Zip presentation.pptx without any folder organization, zip -j [file_name].zip presentation.pptx Find directories with names starting with 'project' and not modified in the last 90 days,"find . -type d -name ""project*"" -mtime +90" Create a hard link by moving script.py to images_backup., cp -l script.py images_backup "Replicate video.mp4 to temp_folder while retaining its attributes, creating a hard link, and making a backup", cp -p -l -b video.mp4 temp_folder Check database.sql.zip for integrity, unzip -t database.sql.zip Look for files that have the name image.jpg., find . -name image.jpg Search for files with the extension '.txt',"find . -type f -name ""*.txt""" "Transfer proposal.docx to downloads, then output verbosely",mv -v proposal.docx downloads List file sizes in a human-friendly format,ls -h List files in order of file size,ls -S configuration.ini should be moved to documents. handling it like any other file,mv -T configuration.ini documents "Filter files in photos based on *.pdf, then move them to temp_folder","grep -lR ""*.pdf"" photos | xargs -I {} mv {} temp_folder" Make backups of the current files and mirror photo.png to archive.,cp -b photo.png archive Place configuration.ini in the report.pdf archive.zip, zip -m report.pdf.zip configuration.ini Show non-blank line numbers for document.docx, cat -b document.docx List of files in extended format,ls -l Verbose extraction of database.sql.zip, unzip -v database.sql.zip List contents of executable.exe quietly, cat -q executable.exe Display characters for proposal.docx that aren't printed, cat -v proposal.docx Move executable.exe with attribute preservation to photos_backup, cp -p executable.exe photos_backup Verbose result: configuration.ini should be moved to logs.,mv -v configuration.ini logs Test integrity of spreadsheet.xlsx.zip, zip -T spreadsheet.xlsx.zip "Create a backup of video.mp4, do not overwrite, and display verbose output",mv -bnv video.mp4 [directory_name] Find files with names starting with 'report' and with read permissions for others,"find . -type f -name ""report*"" -perm /o=r" Enable output with colors,ls -G Show hidden files and directories in long format with colored output and detailed information,ls -alG "List all files in long format that begin with ""report"".",ls -l report* Put policy.pdf in the designated directory. thinking about it as a file rather than a directory,mv -T policy.pdf [directory_name] Transfer image.jpg to archives while keeping all current files.,mv -n image.jpg archives Update existing files in video.mp4.zip, zip -u video.mp4.zip [file1] Show line endings for audio.mp3, cat -E audio.mp3 "List subdirectories recursively, each with human-readable sizes and comprehensive information.",ls -Rdlh Delete files with name configuration.ini, find . -name configuration.ini -exec rm {} \ Locate named pipes, find . -type p Show non-blank line numbers for database.sql, cat -b database.sql Prompt for confirmation before moving proposal.docx to videos,mv -i proposal.docx videos "Display tabs as ~For script.py, I", cat -T script.py "When zipping, disregard paths memo.txt.", zip -j [file_name].zip memo.txt Display configuration.ini with line numbers, cat -n configuration.ini Provide password '*.mp4' to extract spreadsheet.xlsx.zip, unzip -P *.mp4 spreadsheet.xlsx.zip Check database.sql.zip to maintain integrity, zip -T database.sql.zip Pack spreadsheet.xlsx without paths into archive, zip -j [file_name].zip spreadsheet.xlsx Compile and transfer audio.mp3 to report.pdf.zip., zip -u report.pdf.zip audio.mp3 Transfer document.docx to projects_backup and conduct a force overwrite, cp -f document.docx projects_backup "Create a backup of spreadsheet.xlsx, regard the destination as a file, display detailed feedback, and refrain from overwriting.",mv -nbvT spreadsheet.xlsx [directory_name] Show video.mp4 as ^ with tabsI, cat -T video.mp4 Refresh video.mp4 in the zip file photo.png., zip -f photo.png.zip video.mp4 "If the parent directories and directory backups don't already exist, create them.",mkdir -p backups "Without asking, move script.py firmly to backups.",mv -f script.py backups Display hidden folders and files with a coloured output.,ls -aG Show proposal.docx with error messages suppressed, cat -q proposal.docx Copy photo.png to documents_backup and ask for confirmation from the user,cp -i photo.png documents_backup Show hidden files and directories in long format with colored output and detailed information,ls -alG Move spreadsheet.xlsx to downloads and ask before overwriting,mv -i spreadsheet.xlsx downloads Search for files named contract.pdf, find . -name contract.pdf Show file details in long format,ls -l Delete files with name memo.txt, find . -name memo.txt -execdir rm {} \ Print the contents of video.mp4 with line ends., cat -E video.mp4 Show tabs as ^I for configuration.ini, cat -T configuration.ini "Without asking, force copy spreadsheet.xlsx to backup", cp -f spreadsheet.xlsx backup Make a hard link by copying memo.txt to scripts_backup and maintaining all of its properties., cp -p -l memo.txt scripts_backup Search for directories with names starting with 'backup' and not owned by the user 'admin',"find . -type d -name ""backup*"" ! -user admin" Show the file's inode numbers.,ls -i Show files listed with colors,ls -G Transfer files larger than 1 MB from photos_backup to presentations,find presentations -type f -size +1M -exec mv {} photos_backup \; Make a clone of photo.png in templates_backup and replace any existing files with force., cp -f photo.png templates_backup "Extract configuration.ini.zip, but only the most recent files.", unzip -U configuration.ini.zip Unzip files from document.docx.zip quietly, unzip -q document.docx.zip "List subdirectories recursively, each with a colour and full description.",ls -RdlG "Transfer audio.mp3 firmly to logs, overwriting if required.",mv -f audio.mp3 logs Place the files from documents into an archive., zip -r documents documents "Make a symbolic link named ""alias"" pointing to ""music_library"" and establish a new directory called ""databases"".",mkdir databases && ln -s music_library alias "Concatenate presentation.pptx and database.sql, numbering non-empty output lines and showing non-printing characters and tabs as '^I'",cat -b -vT presentation.pptx database.sql Compress files using gzip, find . -type f -execdir gzip {} \ Give file sizes in an easy-to-read format.,ls -h Duplicate contract.pdf to music_library and keep attributes unchanged while creating a hard link, cp -p -l contract.pdf music_library Place report.pdf inside of the archive video.mp4.Zip, zip -u video.mp4.zip report.pdf "Transfer video.mp4 firmly to reports, ask permission before overwriting, and only move if a newer version is available.",mv -fiu video.mp4 reports "Copy document.docx to photos_backup while preserving its attributes, creating a hard link, and making a backup", cp -p -l -b document.docx photos_backup "Unzip the contents of ""spreadsheet.xlsx"" into the directory ""music"" that has been created.",mkdir music && unzip spreadsheet.xlsx.zip -d music List all files in the current directory,ls -a Output image.jpg with visible non-printing characters., cat -v image.jpg "Archive files presentation.pptx, video.mp4, database.sql into report.pdf.zip, using password 'secure123'",zip -P secure123 report.pdf.zip presentation.pptx video.mp4 database.sql Extract the files from proposal.docx.zip by changing the directory to reports_archive., unzip -C reports_archive proposal.docx.zip "Display hidden files and directories in long format, then count the number of lines",ls -al | wc -l "Without asking, force copy spreadsheet.xlsx to backup", cp -f spreadsheet.xlsx backup Files can be sorted by size.,ls -S Transfer music to output with recursive copying and preserving attributes, cp -r -p music output Display photo.png with buffered output suppressed, cat -u photo.png "Make a hard link, backup, and duplicate policy.pdf to documents_archive while maintaining all attributes.", cp -p -l -b policy.pdf documents_archive "Package files report.pdf, memo.txt, video.mp4 into configuration.ini.zip, using compression level 3, storing symbolic links",zip -3 -y configuration.ini.zip report.pdf memo.txt video.mp4 Show line numbers for presentation.pptx, cat -n presentation.pptx "Save a backup of photo.png, do not overwrite, and show verbose feedback",mv -nbv photo.png [directory_name] Place the files from documents into an archive., zip -r documents documents "Display hidden files and directories in long format, then remove the owner information","ls -al | awk '{$2=$3=$4=""""; print $0}'" "Archive files audio.mp3, audio.mp3, proposal.docx into configuration.ini.zip, excluding '*.tmp' files, quietly",zip -x '*.tmp' -q configuration.ini.zip audio.mp3 audio.mp3 proposal.docx Delete empty directories, find . -type d -empty -delete compel Make a backup of the current files and copy script.py to downloads_archive., cp -b -f script.py downloads_archive Show the file's inode numbers.,ls -i Look for files exactly 50 bytes in size, find . -size 50c "List all files starting with ""report"" in long format",ls -l report* Replicate proposal.docx to scripts_backup and backup existing files, cp -b -p proposal.docx scripts_backup List contents of image.jpg with non-blank line numbers, cat -b image.jpg "Using attribute preservation, clone document.docx to videos_backup, establish a hard link, and create a backup", cp -p -l -b document.docx videos_backup Move files from backups to downloads_archive and append timestamp to filename,"find backups -type f -exec sh -c 'mv ""$1"" ""$2/$(basename ""$1"")_$(date +%Y%m%d_%H%M%S)""' sh {} downloads_archive \;" "Display database.sql, showing line numbers, non-printing characters, and tabs as '^I', with a '$' at the end of each line",cat -n -v -T -e database.sql Print spreadsheet.xlsx contents with line endings, cat -E spreadsheet.xlsx Display contents of a directory recursively,ls -R Extract database.sql.zip without displaying output, unzip -q database.sql.zip Show line numbers for image.jpg, cat -n image.jpg "Recursively list subdirectories with detailed information, then search for a specific file","ls -Rl | grep ""filename""" "Create a backup of memo.txt, do not overwrite, display verbose output, and treat destination as file",mv -bnvT memo.txt [directory_name] Make a hard link to duplicate proposal.docx in scripts_backup., cp -l proposal.docx scripts_backup List files in reverse order of modification time,ls -r "Ask before replacing report.pdf in projects, treat destination as file, and show verbose feedback",mv -TiV report.pdf projects "Create a backup of video.mp4, do not overwrite, and display verbose output",mv -bnv video.mp4 [directory_name] See what's in image.jpg.zip, unzip -l image.jpg.zip Backup logs to music_library and maintain its attributes with recursive copying, cp -r -p logs music_library Clone executable.exe to music_library with attribute preservation, cp -p executable.exe music_library "Archive files proposal.docx, spreadsheet.xlsx, database.sql into script.py.zip, preserving paths",zip -r script.py.zip proposal.docx spreadsheet.xlsx database.sql "Generate directory ""photos"" and exclude file ""ignore2.png"" from it.",mkdir photos && ls | grep -v ignore2.png Extract and update files with newer versions from contract.pdf.zip, unzip -U contract.pdf.zip First-listed show directories,ls --group-directories-first Show script.py in tabbed mode as \I, cat -T script.py "Create a directory named 'backups', copy all files from 'backups' to it, then move them to 'videos_backup'.",mkdir /backups/ | cp /backups/* /backups/ | mv /backups/* /videos_backup/ Find files modified within the last 7 days,find . -type f -mtime -7 Backup current files and mirror audio.mp3 to archive., cp -b -p audio.mp3 archive Show directories prioritized over files,ls --group-directories-first Sort files in descending order,ls -r List the files that include comprehensive information.,ls -l Display files sorted by modification time,ls -t Place all of music's files in an archive.s, zip -r music music Show line numbers for audio.mp3, cat -n audio.mp3 "Uncompress database.sql.zip, extracting symbolic links, to directory music_library",unzip -l -d music_library database.sql.zip Move files from backups to downloads_archive and append timestamp to filename,"find backups -type f -exec sh -c 'mv ""$1"" ""$2/$(basename ""$1"")_$(date +%Y%m%d_%H%M%S)""' sh {} downloads_archive \;" Replace outdated files from document.docx.zip with the most recent ones., unzip -U document.docx.zip Unzip files from document.docx.zip quietly, unzip -q document.docx.zip Transfer photo.png to downloads_archive and establish a hard link, cp -l photo.png downloads_archive "Transfer images to scripts_backup with recursive copying, preserving attributes, and creating a backup", cp -r -p -b images scripts_backup Show files listed in order of modification time,ls -t Unzip files from document.docx.zip ignoring directory structure, unzip -j document.docx.zip "List all files ending with "".pdf"" with colored output",ls -G *.pdf "Extract spreadsheet.xlsx.zip with password '123pass', preserving permissions, overwriting existing files, and extracting symbolic links to directory logs_archive",unzip -P 123pass -K -o -l -d logs_archive spreadsheet.xlsx.zip "Create the directory ""projects"" and provide a list of its contents.",mkdir projects && ls projects Maintain photo.png properties while copying to logs_archive, cp -p photo.png logs_archive Find files with a size of precisely 50 bytes., find . -size 50c Extract files and overwrite existing files from script.py.zip, unzip -o script.py.zip Transfer the files that have been edited within the last seven days from scripts to photos_backup.,find scripts -type f -mtime -7 -exec mv {} photos_backup \; Extract only updated files from image.jpg.zip, unzip -U image.jpg.zip Duplicate spreadsheet.xlsx to backup with user confirmation for overwrite and preserving attributes, cp -i -p spreadsheet.xlsx backup Move configuration.ini into images in the same way that you would any other file.,mv -T configuration.ini images Move presentation.pptx to logs_archive and verify overwriting interactively., cp -i presentation.pptx logs_archive Compress reports recursively, zip -r reports reports Unzip files from memo.txt.zip quietly, unzip -q memo.txt.zip "Recursively list subdirectories with detailed information, colors, and human-readable sizes",ls -RdlhG "Package files database.sql, contract.pdf, audio.mp3 into image.jpg.zip, using compression level 3, silently",zip -3 -q image.jpg.zip database.sql contract.pdf audio.mp3 Modify the file permissions, find . -type f -exec chmod 644 {} \ Sort the files according to their modification timestamp.,ls -t Print the contents of proposal.docx with non-blank line numbering., cat -b proposal.docx "List all files in the current directory with detailed information, then sort them by modification time in reverse order","ls -al | sort -k6,6r" Print inode number of each file,ls -i Move document.docx into archive script.py.zip, zip -m script.py.zip document.docx Create a backup by recursively copying databases to temp_folder while preserving its properties., cp -r -p -b databases temp_folder List directories and their contents recursively,ls -R "When extracting proposal.docx.zip, overwrite any existing files.", unzip -o proposal.docx.zip List files with hidden files included,ls -a "Compress files executable.exe, proposal.docx, document.docx into database.sql.zip, storing file attributes",zip -X database.sql.zip executable.exe proposal.docx document.docx