Delete test.csv
Browse files
test.csv
DELETED
@@ -1,870 +0,0 @@
|
|
1 |
-
Text,Code
|
2 |
-
Look for files with the name document.docx., find . -name document.docx
|
3 |
-
Print script.py while suppressing the output from the buffer., cat -u script.py
|
4 |
-
"If presentations is outdated or nonexistent, substitute contract.pdf for it.",mv -u contract.pdf presentations
|
5 |
-
Mirror spreadsheet.xlsx to downloads_archive using hard links, cp -l spreadsheet.xlsx downloads_archive
|
6 |
-
Turn on colour output.,ls -G
|
7 |
-
List the contents of the directories after displaying them with coloured output.,ls -dG */ | xargs ls -lG
|
8 |
-
"Open report.pdf.zip, extract the contents, and replace any existing files.", unzip -o report.pdf.zip
|
9 |
-
"Out of image.jpg.zip, remove video.mp4.", zip -d image.jpg.zip video.mp4
|
10 |
-
Display file sizes in a legible manner,ls -h
|
11 |
-
List files sorted by time of modification,ls -t
|
12 |
-
Examine script.py.zip for mistakes., zip -T script.py.zip
|
13 |
-
Transfer audio.mp3 to templates_backup and interactively confirm overwrite while preserving attributes and creating a backup, cp -i -p -b audio.mp3 templates_backup
|
14 |
-
List files in a lengthy format with output that is coloured.,ls -lG
|
15 |
-
Transfer photo.png to scripts_backup and make a backup if files already exist, cp -b -i photo.png scripts_backup
|
16 |
-
List the contents of proposal.docx while suppressing buffered output., cat -u proposal.docx
|
17 |
-
Provide a complete informational list of every file in the current directory.,ls -al
|
18 |
-
Transfer document.docx to archive by creating a hard link, cp -l document.docx archive
|
19 |
-
Incorporate database.sql into configuration.ini.zip then remove, zip -m configuration.ini.zip database.sql
|
20 |
-
Find files named presentation.pptx, find . -name presentation.pptx
|
21 |
-
"Generate directory ""photos"" and exclude file ""ignore2.png"" from it.",mkdir photos && ls | grep -v ignore2.png
|
22 |
-
Make report.pdf a hard link in backup., cp -l report.pdf backup
|
23 |
-
Enable colorized output,ls -G
|
24 |
-
Check presentation.pptx.zip to maintain integrity, unzip -t presentation.pptx.zip
|
25 |
-
Update existing files in script.py.zip, zip -u script.py.zip [file1]
|
26 |
-
Print presentation.pptx using the symbol ^ for the tabs.I, cat -T presentation.pptx
|
27 |
-
Find directories with names ending in 'backup' and with read permissions for the group,"find . -type d -name ""*backup"" -perm /g=r"
|
28 |
-
"Display directory names only, without their contents",ls -d
|
29 |
-
"Move audio.mp3 to documents with force, prompt for confirmation, and treat destination as file",mv -ifT audio.mp3 documents
|
30 |
-
"If spreadsheet.xlsx is more recent or does not already exist in presentations, move it there.",mv -u spreadsheet.xlsx presentations
|
31 |
-
Display files in order of modification time.,ls -t
|
32 |
-
"Push database.sql hard to templates, ask for confirmation, and only transfer if there's a newer version available.",mv -ifu database.sql templates
|
33 |
-
Extract and update files with newer versions from contract.pdf.zip, unzip -U contract.pdf.zip
|
34 |
-
"Uncompress script.py.zip, testing archive integrity only, verbose output, and listing files only to directory documents_archive",unzip -t -v -l -d documents_archive script.py.zip
|
35 |
-
Provide a human-readable list of file sizes.,ls -h
|
36 |
-
Search for symbolic links, find . -type l
|
37 |
-
"Display hidden files and directories in long format, then remove the owner information","ls -al | awk '{$2=$3=$4=""""; print $0}'"
|
38 |
-
Show hidden files with regular files.,ls -a
|
39 |
-
Create a new archive using audio.mp3 and script.py.zip., zip -c script.py.zip audio.mp3
|
40 |
-
List files in executable.exe.zip, unzip -l executable.exe.zip
|
41 |
-
Display files in configuration.ini.zip, unzip -l configuration.ini.zip
|
42 |
-
Display the contents of image.jpg with the repeated blank lines disabled, cat -s image.jpg
|
43 |
-
List the lines that make up document.docx in the list., cat -n document.docx
|
44 |
-
Make report.pdf a hard link in backup., cp -l report.pdf backup
|
45 |
-
Display detailed information about files,ls -l
|
46 |
-
Check integrity of presentation.pptx.zip, zip -T presentation.pptx.zip
|
47 |
-
Show line endings for audio.mp3, cat -E audio.mp3
|
48 |
-
"If files already exist, duplicate executable.exe to logs_archive using a backup.", cp -b -i executable.exe logs_archive
|
49 |
-
Move document.docx to videos_backup and verify overwriting interactively., cp -i document.docx videos_backup
|
50 |
-
"Sort the files in the list according to size, and show the file sizes in a legible manner.",ls -Sh
|
51 |
-
Put report.pdf inside database.sql.zip and delete, zip -m database.sql.zip report.pdf
|
52 |
-
Show photo.png with characters that don't print, cat -v photo.png
|
53 |
-
Print configuration.ini with suppression of repeated empty lines, cat -s configuration.ini
|
54 |
-
Files should be sorted in reverse order.,ls -r
|
55 |
-
"Make a hard link, backup, and copy spreadsheet.xlsx to music_library while maintaining its properties.", cp -p -l -b spreadsheet.xlsx music_library
|
56 |
-
Freshen document.docx in database.sql.zip, zip -f database.sql.zip document.docx
|
57 |
-
List contents of spreadsheet.xlsx with line numbers, cat -n spreadsheet.xlsx
|
58 |
-
"Create a backup of photo.png, do not overwrite, and move only if newer",mv -bnu photo.png [directory_name]
|
59 |
-
"Take the files out of photo.png.Zip the file, then select downloads_archive.", unzip -C downloads_archive photo.png.zip
|
60 |
-
Clone policy.pdf with preserving attributes to projects_backup., cp -p policy.pdf projects_backup
|
61 |
-
Place script.py.zip inside spreadsheet.xlsx., zip -m script.py.zip spreadsheet.xlsx
|
62 |
-
"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
|
63 |
-
Display the contents of image.jpg with the repeated blank lines disabled, cat -s image.jpg
|
64 |
-
Transfer executable.exe as a normal file to photos.,mv -T executable.exe photos
|
65 |
-
Avoid replacing configuration.ini with an already-existing file in projects.,mv -n configuration.ini projects
|
66 |
-
Remove image.jpg from contract.pdf.zip, zip -d contract.pdf.zip image.jpg
|
67 |
-
Display database.sql with tabs as ^I, cat -T database.sql
|
68 |
-
Provide a complete informational list of every file in the current directory.,ls -al
|
69 |
-
"Make directory ""logs"" and unzip contents of ""presentation.pptx.zip"" into it.",mkdir logs && unzip presentation.pptx.zip -d logs
|
70 |
-
Print configuration.ini with suppression of repeated empty lines, cat -s configuration.ini
|
71 |
-
Move spreadsheet.xlsx with properties preserved to images_backup,cp -a spreadsheet.xlsx images_backup
|
72 |
-
Copy the file named 'report.pdf' to the directory 'downloads_archive'.,cp /report.pdf /downloads_archive/
|
73 |
-
"If the parent directories and the directories presentations, temp, and documents don't already exist, create them with verbose output.",mkdir -p -v presentations && mkdir -p -v temp && mkdir -p -v documents
|
74 |
-
Recursively list subdirectories and display directory structure with colored output,ls -RdG
|
75 |
-
Find files with names containing 'data' and modified more than 30 days ago,"find . -type f -name ""*data*"" -mtime +30"
|
76 |
-
Put policy.pdf in the designated directory. thinking about it as a file rather than a directory,mv -T policy.pdf [directory_name]
|
77 |
-
Transfer report.pdf to templates_backup and ask for user confirmation if files exist,cp -i report.pdf templates_backup
|
78 |
-
"Release proposal.docx.zip, testing archive integrity only, to directory backup",unzip -t -d backup proposal.docx.zip
|
79 |
-
Copy the file named 'report.pdf' to the directory 'downloads_archive'.,cp /report.pdf /downloads_archive/
|
80 |
-
Take executable.exe out of the contract.pdf.zip., zip -d contract.pdf.zip executable.exe
|
81 |
-
"Create a directory named ""music"" and list the files in it.",mkdir music && ls music
|
82 |
-
Print the contents of contract.pdf with line ends., cat -E contract.pdf
|
83 |
-
"Transfer report.pdf forcefully to presentations, asking for confirmation, and treating destination as a file",mv -ifT report.pdf presentations
|
84 |
-
Files should be shown sorted by last modification time.,ls -t
|
85 |
-
List files with extended attributes,ls -l
|
86 |
-
"In memo.txt.zip, add database.sql and check for updates.", zip -f memo.txt.zip database.sql
|
87 |
-
Display the output in colour.,ls -G
|
88 |
-
Make a clone of photo.png in templates_backup and replace any existing files with force., cp -f photo.png templates_backup
|
89 |
-
Replicate databases to temp_folder recursively, cp -r databases temp_folder
|
90 |
-
Mirror documents to templates_backup recursively, cp -r documents templates_backup
|
91 |
-
Copy policy.pdf to documents_archive and create a backup of existing files,cp -b policy.pdf documents_archive
|
92 |
-
Display configuration.ini with suppressed empty lines, cat -s configuration.ini
|
93 |
-
"Zip files database.sql, configuration.ini, spreadsheet.xlsx into configuration.ini.zip, compressing with best compression, excluding '*.log' files",zip -9 -x '*.log' configuration.ini.zip database.sql configuration.ini spreadsheet.xlsx
|
94 |
-
Duplicate script.py to templates_backup using hard links, cp -l script.py templates_backup
|
95 |
-
Enable colored listing,ls -G
|
96 |
-
"Take the files out of presentation.pptx.Zip the file, then select photos_backup.", unzip -C photos_backup presentation.pptx.zip
|
97 |
-
"Move proposal.docx to archive, and if the files are already there, create a backup.",cp -b proposal.docx archive
|
98 |
-
"Create directory ""scripts"" and zip its contents into file ""video.mp4.zip"".",mkdir scripts && zip video.mp4.zip scripts/*
|
99 |
-
Put video.mp4 into a new script.py.zip archive., zip -c script.py.zip video.mp4
|
100 |
-
Print policy.pdf with tabs represented as ^I, cat -T policy.pdf
|
101 |
-
Clone policy.pdf to output and ask for permission before replacing,cp -i policy.pdf output
|
102 |
-
Files are shown in order of file size.,ls -S
|
103 |
-
"In videos, prompt before overwriting configuration.ini, regard the destination as a file, and only move if it's more recent.",mv -iuT configuration.ini videos
|
104 |
-
"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
|
105 |
-
Search for empty files, find . -type f -empty
|
106 |
-
Find files with names starting with 'report' and with read permissions for others,"find . -type f -name ""report*"" -perm /o=r"
|
107 |
-
Transfer document.docx to projects_backup and conduct a force overwrite, cp -f document.docx projects_backup
|
108 |
-
"Unarchive policy.pdf.zip, quietly and extracting to standard output to directory backup",unzip -q -p -d backup policy.pdf.zip
|
109 |
-
"If files already exist, replicate script.py to backup and make backups.",cp -b script.py backup
|
110 |
-
Show files in reverse order based on the modification time.,ls -ltr
|
111 |
-
Enumerate file sizes in a human-readable format.,ls -h
|
112 |
-
"If the parent directories and the directories projects, downloads, and music don't already exist, create them.",mkdir -p projects && mkdir -p downloads && mkdir -p music
|
113 |
-
Zip configuration.ini without directory structure, zip -j [file_name].zip configuration.ini
|
114 |
-
Enable color output,ls -G
|
115 |
-
"If presentations is outdated or nonexistent, substitute database.sql for it.",mv -u database.sql presentations
|
116 |
-
"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}'
|
117 |
-
List files with detailed information,ls -l
|
118 |
-
List the lines that don't include a blank in proposal.docx, cat -b proposal.docx
|
119 |
-
Take the files out of policy.pdf.zip. disregarding the directory structure, unzip -j policy.pdf.zip
|
120 |
-
List directory names only,ls -d
|
121 |
-
Take the updated files out of video.mp4.zip., unzip -U video.mp4.zip
|
122 |
-
Zip video.mp4 disregards the directory hierarchy, zip -j [file_name].zip video.mp4
|
123 |
-
Verify policy.pdf.zip for integrity, unzip -t policy.pdf.zip
|
124 |
-
"Forcefully move image.jpg to archives, prompt before overwriting, and move only if newer",mv -fiu image.jpg archives
|
125 |
-
"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
|
126 |
-
Output the first 100 lines of report.pdf,cat report.pdf | head -n 100
|
127 |
-
"Display executable.exe, showing line numbers, non-printing characters, and tabs as spaces, with a '$' at the end of each line",cat -n -vT -e executable.exe
|
128 |
-
Create zip of reports and its contents, zip -r reports reports
|
129 |
-
"Retrieve proposal.docx.zip, quietly (no output) to directory backup",unzip -q -d backup proposal.docx.zip
|
130 |
-
Extract the files from database.sql.zip by navigating to documents_archive., unzip -C documents_archive database.sql.zip
|
131 |
-
"Make directory ""backups"" and list files in ""backups"".",mkdir backups && ls backups
|
132 |
-
Show files listed in order of modification time,ls -t
|
133 |
-
Show video.mp4 with the blank lines suppressed., cat -s video.mp4
|
134 |
-
"Concatenate memo.txt and spreadsheet.xlsx, numbering non-blank output lines",cat -b memo.txt spreadsheet.xlsx
|
135 |
-
"Move the files that match the pattern ""*.mp4"" to the newly created directory ""projects"".",mkdir projects && mv **.mp4* projects
|
136 |
-
"Move spreadsheet.xlsx to templates with force, prompt for confirmation, and treat destination as file",mv -ifT spreadsheet.xlsx templates
|
137 |
-
Sort files by modification time,ls -t
|
138 |
-
Search for files with names starting with 'file' and owned by the user 'user',"find . -type f -name ""file*"" -user user"
|
139 |
-
"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
|
140 |
-
"Before replacing current files, copy audio.mp3 to logs_archive and be sure to ask.",cp -i audio.mp3 logs_archive
|
141 |
-
Replace logs with audio.mp3 without confirmation,mv -f audio.mp3 logs
|
142 |
-
Display database.sql with suppressed empty lines, cat -s database.sql
|
143 |
-
Zip projects recursively, zip -r projects projects
|
144 |
-
Extract files from configuration.ini.zip into documents_archive, unzip -d documents_archive configuration.ini.zip
|
145 |
-
List contents of script.py with line endings, cat -E script.py
|
146 |
-
Recursively list subdirectories with detailed information and colors,ls -RdlG
|
147 |
-
List the contents of policy.pdf.zip., unzip -l policy.pdf.zip
|
148 |
-
"Using attribute preservation, clone audio.mp3 to music_library, establish a hard link, and create a backup", cp -p -l -b audio.mp3 music_library
|
149 |
-
Backup policy.pdf before forcefully moving it to reports,mv -bf policy.pdf reports
|
150 |
-
Provide a complete informational list of every file in the current directory.,ls -al
|
151 |
-
Extract files from database.sql.zip and change to reports_archive, unzip -C reports_archive database.sql.zip
|
152 |
-
List the contents of audio.mp3 while displaying each control character., cat -A audio.mp3
|
153 |
-
Show hidden files and directories in long format with colored output,ls -alG
|
154 |
-
Display configuration.ini with line numbers, cat -n configuration.ini
|
155 |
-
Display video.mp4 in quiet mode, cat -q video.mp4
|
156 |
-
Display files in order of their sizes,ls -S
|
157 |
-
"Move proposal.docx to templates_backup, then verify overwrite while maintaining attributes interactively.", cp -i -p proposal.docx templates_backup
|
158 |
-
Search for files larger than 1MB , find . -size +1M
|
159 |
-
Test integrity of script.py.zip, unzip -t script.py.zip
|
160 |
-
Move the contents of videos to photos_backup. recursively, cp -r videos photos_backup
|
161 |
-
"Ask before replacing script.py in logs, treat destination as file, and show verbose feedback",mv -TiV script.py logs
|
162 |
-
Search for files named contract.pdf, find . -name contract.pdf
|
163 |
-
Extract policy.pdf.zip with no password to directory templates_backup,unzip -d templates_backup policy.pdf.zip
|
164 |
-
"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
|
165 |
-
List the lines that don't include a blank in proposal.docx, cat -b proposal.docx
|
166 |
-
Transfer video.mp4 to logs_archive and interactively confirm overwrite, cp -i video.mp4 logs_archive
|
167 |
-
List files in long format with colored output,ls -lG
|
168 |
-
Display script.py with line endings, cat -E script.py
|
169 |
-
Check for updates and add policy.pdf to script.py.zip, zip -u script.py.zip policy.pdf
|
170 |
-
Output the first 100 lines of report.pdf,cat report.pdf | head -n 100
|
171 |
-
Look for metaphorical connections., find . -type l
|
172 |
-
"Extract presentation.pptx.zip, then update your files with the latest versions.", unzip -U presentation.pptx.zip
|
173 |
-
Pack memo.txt without paths into archive, zip -j [file_name].zip memo.txt
|
174 |
-
Copy reports to documents_archive and prompt before overwriting if necessary,cp -ir reports documents_archive
|
175 |
-
Recursively list subdirectories and display directory structure,ls -Rd
|
176 |
-
Search for files with name photo.png, find . -name photo.png
|
177 |
-
Silently extract the files from audio.mp3.zip., unzip -q audio.mp3.zip
|
178 |
-
Duplicate presentation.pptx to templates_backup and create backup copies,cp -b presentation.pptx templates_backup
|
179 |
-
Compress files using gzip, find . -type f -execdir gzip {} \
|
180 |
-
Archive policy.pdf into new audio.mp3.zip, zip -c audio.mp3.zip policy.pdf
|
181 |
-
Mirror documents_backup to templates recursively, cp -r templates documents_backup
|
182 |
-
Make a fresh archive with executable.exe.zip from proposal.docx, zip -c executable.exe.zip proposal.docx
|
183 |
-
Transfer audio.mp3 to documents_archive and interactively confirm overwrite, cp -i audio.mp3 documents_archive
|
184 |
-
Verbose mode: Move database.sql into the designated directory.,mv -v database.sql [directory_name]
|
185 |
-
"Create the directory ""scripts"" and extract the contents of ""spreadsheet.xlsx.zip"" into it using Zipping.",mkdir scripts && unzip spreadsheet.xlsx.zip -d scripts
|
186 |
-
"Extend the format of hidden files and folders, then delete the owner data.","ls -al | awk '{$2=$3=$4=""""; print $0}'"
|
187 |
-
Show line numbers for audio.mp3, cat -n audio.mp3
|
188 |
-
Display hidden folders and files,ls -a
|
189 |
-
Output the last 10 lines of audio.mp3,cat audio.mp3 | tail
|
190 |
-
"Forcefully move photo.png to logs, but ask for approval",mv -if photo.png logs
|
191 |
-
Search for directories, find . -type d
|
192 |
-
"Archive files image.jpg, configuration.ini, proposal.docx into memo.txt.zip, compressing only '*.txt' files, excluding '*.tmp' files",zip -n '*.txt' -x '*.tmp' memo.txt.zip image.jpg configuration.ini proposal.docx
|
193 |
-
"Move the files that match the pattern ""*.mp4"" to the newly created directory ""projects"".",mkdir projects && mv **.mp4* projects
|
194 |
-
Display inode numbers of files,ls -i
|
195 |
-
Sort files based on modification time,ls -t
|
196 |
-
Extract files from database.sql.zip and change to reports_archive, unzip -C reports_archive database.sql.zip
|
197 |
-
List contents of script.py with buffered output suppression, cat -u script.py
|
198 |
-
"Unwrap presentation.pptx.zip, extracting to standard output, to directory backup",unzip -p -d backup presentation.pptx.zip
|
199 |
-
"Show directories themselves with colored output, then list their contents",ls -dG */ | xargs ls -lG
|
200 |
-
Delete files modified more than 1 year ago, find . -type f -mtime +365 -delete
|
201 |
-
List directory contents including hidden files,ls -a
|
202 |
-
Replace videos with proposal.docx if it's newer or doesn't exist,mv -u proposal.docx videos
|
203 |
-
Create backups of the current files and clone image.jpg to temp_folder.,cp -b image.jpg temp_folder
|
204 |
-
Ignore paths when zipping policy.pdf, zip -j [file_name].zip policy.pdf
|
205 |
-
Files should be listed in the lengthy listing format.,ls -l
|
206 |
-
Clone database.sql with preserving attributes to documents_archive.,cp -a database.sql documents_archive
|
207 |
-
Output the last 10 lines of audio.mp3,cat audio.mp3 | tail
|
208 |
-
Extract files from image.jpg.zip and change to projects_backup, unzip -C projects_backup image.jpg.zip
|
209 |
-
Ask before replacing document.docx in reports,mv -i document.docx reports
|
210 |
-
Delete contract.pdf from policy.pdf.zip, zip -d policy.pdf.zip contract.pdf
|
211 |
-
"List files having coloured output, sorted in reverse order by size and modification time.",ls -SltrG
|
212 |
-
Move configuration.ini to reports if it's newer or doesn't exist,mv -u configuration.ini reports
|
213 |
-
Add and move script.py to executable.exe.zip, zip -m executable.exe.zip script.py
|
214 |
-
"Create directory ""backups"" and remove files matching pattern ""*.mp3"".",mkdir backups && rm **.mp3*
|
215 |
-
"Make a hard link, backup, and duplicate policy.pdf to documents_archive while maintaining all attributes.", cp -p -l -b policy.pdf documents_archive
|
216 |
-
"If audio.mp3 is more recent, update it in executable.exe.zip.", zip -f executable.exe.zip audio.mp3
|
217 |
-
"If the parent directories and directory music don't already exist, create them.",mkdir -p music
|
218 |
-
"Compress files contract.pdf, report.pdf, database.sql into executable.exe.zip, compressing with best compression, preserving paths",zip -9 -r executable.exe.zip contract.pdf report.pdf database.sql
|
219 |
-
"List every file, hidden files included.",ls -a
|
220 |
-
Copy photo.png to documents_backup and prompt before overwriting if necessary,cp --interactive photo.png documents_backup
|
221 |
-
Check for updates and add spreadsheet.xlsx to executable.exe.zip, zip -f executable.exe.zip spreadsheet.xlsx
|
222 |
-
Extract files with verbose mode enabled from spreadsheet.xlsx.zip, unzip -v spreadsheet.xlsx.zip
|
223 |
-
"After placing configuration.ini inside executable.exe.zip, remove it.", zip -u executable.exe.zip configuration.ini
|
224 |
-
"Concatenate policy.pdf and document.docx, numbering all output lines and showing non-printing characters and tabs as spaces",cat -n -vT policy.pdf document.docx
|
225 |
-
Look for files with name memo.txt, find . -name memo.txt
|
226 |
-
Place contract.pdf.zip inside audio.mp3., zip -m contract.pdf.zip audio.mp3
|
227 |
-
Display the contents of image.jpg with the repeated blank lines disabled, cat -s image.jpg
|
228 |
-
Display files in reverse sorted order,ls -r
|
229 |
-
Display memo.txt with the error messages hidden, cat -q memo.txt
|
230 |
-
Print script.py using the symbol ^ for the tabs.I, cat -T script.py
|
231 |
-
"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
|
232 |
-
Compress reports recursively, zip -r reports reports
|
233 |
-
"Extract document.docx.zip, verbose output, to directory documents_backup",unzip -v -d documents_backup document.docx.zip
|
234 |
-
Place report.pdf in music without considering it as a directory,mv -T report.pdf music
|
235 |
-
"List files sorted by size and modification time in reverse order with detailed information, then display the first 15 lines",ls -Sltr | head -n 15
|
236 |
-
Display file details in the format of a long listing.,ls -l
|
237 |
-
Display hidden files and directories in long format with detailed information and colors,ls -alG
|
238 |
-
Show photo.png with characters that don't print, cat -v photo.png
|
239 |
-
"List every file with the word ""backup"" in its name, together with all relevant details.",ls -l *backup*
|
240 |
-
Display every character in the control set for video.mp4, cat -A video.mp4
|
241 |
-
Files are sorted by date of modification.,ls -t
|
242 |
-
Mirror proposal.docx to photos_backup with attributes intact,cp -a proposal.docx photos_backup
|
243 |
-
Show memo.txt with suppressed buffered output, cat -u memo.txt
|
244 |
-
Verbose output should be displayed while extracting configuration.ini.zip., unzip -v configuration.ini.zip
|
245 |
-
"Decompress presentation.pptx.zip, extracting files matching pattern '*.csv', quietly, and testing archive integrity only to directory downloads_archive",unzip -j -q -t -d downloads_archive presentation.pptx.zip '*.csv'
|
246 |
-
Replicate audio.mp3 to logs_archive while retaining its attributes and creating a hard link, cp -p -l audio.mp3 logs_archive
|
247 |
-
"Make a backup of spreadsheet.xlsx, regard the destination as a file, don't overwrite, and show verbose output.",mv -bnvT spreadsheet.xlsx [directory_name]
|
248 |
-
"Prompt before overwriting report.pdf in reports, treat destination as file, and display verbose output",mv -iTv report.pdf reports
|
249 |
-
"Force copy report.pdf to images_backup without prompting, preserving attributes, and creating a backup", cp -f -p -b report.pdf images_backup
|
250 |
-
Display document.docx with line endings, cat -E document.docx
|
251 |
-
Print each file separately,ls -1
|
252 |
-
Silently extract the files from audio.mp3.zip., unzip -q audio.mp3.zip
|
253 |
-
Show directories in the beginning of the list,ls --group-directories-first
|
254 |
-
"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'
|
255 |
-
"Open report.pdf.zip, extract the contents, and replace any existing files.", unzip -o report.pdf.zip
|
256 |
-
"Extend the format of hidden files and folders, then delete the owner data.","ls -al | awk '{$2=$3=$4=""""; print $0}'"
|
257 |
-
Find the spreadsheet.xlsx files., find . -name spreadsheet.xlsx
|
258 |
-
Display contract.pdf with non-blank line numbers, cat -b contract.pdf
|
259 |
-
"Arrange files according to when they were last modified, show the file sizes in a legible manner, and then tally the amount of lines.",ls -lt | awk '{print $5}' | wc -l
|
260 |
-
Print contract.pdf while suppressing the output from the buffer., cat -u contract.pdf
|
261 |
-
Remove video.mp4 from document.docx.zip, zip -d document.docx.zip video.mp4
|
262 |
-
"Move policy.pdf to images_backup, verify overwrite interactively, maintain attributes, and make a backup.", cp -i -p -b policy.pdf images_backup
|
263 |
-
Sort files by size and modification time in reverse order with colored output,ls -SltrG
|
264 |
-
Look for directories., find . -type d
|
265 |
-
Zip audio.mp3 without any folder organization, zip -j [file_name].zip audio.mp3
|
266 |
-
Search for files modified in the last 24 hours and larger than 100KB,find . -type f -mtime -1 -size +100k
|
267 |
-
Move the files from downloads to output after filtering them using *.sql.,"grep -lR ""*.sql"" downloads | xargs -I {} mv {} output"
|
268 |
-
"Make ""music"" and purge files that correspond to ""*.txt"".",mkdir music && rm **.txt*
|
269 |
-
"Place proposal.docx within script.py.zip, then remove it.", zip -m script.py.zip proposal.docx
|
270 |
-
Show non-blank line numbers for document.docx, cat -b document.docx
|
271 |
-
Search for files between 1GB and 2GB in size., find . -size +1G -size -2G
|
272 |
-
List subdirectories in a recursive manner and show the directory structure.,ls -Rd
|
273 |
-
Remove presentation.pptx from proposal.docx.zip, zip -d proposal.docx.zip presentation.pptx
|
274 |
-
Transfer contract.pdf to photos_backup and interactively confirm overwrite while preserving attributes and creating a backup, cp -i -p -b contract.pdf photos_backup
|
275 |
-
Copy presentation.pptx to videos_backup interactive confirmation is necessary.,cp -i presentation.pptx videos_backup
|
276 |
-
Extract files with verbose output from executable.exe.zip, unzip -v executable.exe.zip
|
277 |
-
"Without asking, forcefully copy database.sql to templates_backup while maintaining attributes", cp -f -p database.sql templates_backup
|
278 |
-
"Establish directory ""downloads"" and concatenate files ""proposal.docx"", ""proposal.docx"", ""configuration.ini"" into it.",mkdir downloads && cat proposal.docx proposal.docx configuration.ini > downloads/concatenated_file.txt
|
279 |
-
"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
|
280 |
-
Search for empty files, find . -type f -empty
|
281 |
-
Clone spreadsheet.xlsx to music_library with attribute preservation and creating a hard link, cp -p -l spreadsheet.xlsx music_library
|
282 |
-
Transfer presentation.pptx to music solely in cases where it is not in use or is more recent.,mv -u presentation.pptx music
|
283 |
-
"Package files document.docx, video.mp4, script.py into document.docx.zip, excluding '*.log' files, silently",zip -x '*.log' -q document.docx.zip document.docx video.mp4 script.py
|
284 |
-
"Open memo.txt and extract encrypted.zip using the ""*.png"" password", unzip -P *.png memo.txt.zip
|
285 |
-
configuration.ini should be moved to documents. handling it like any other file,mv -T configuration.ini documents
|
286 |
-
"Unpack video.mp4.zip, verbose output, excluding archive2.zip, and testing archive integrity only to directory documents_backup",unzip -v -x archive2.zip -t -d documents_backup video.mp4.zip
|
287 |
-
"To reports_archive, copy images. recursively", cp -r images reports_archive
|
288 |
-
"List all files, including hidden files",ls -a
|
289 |
-
Remove image.jpg from contract.pdf.zip, zip -d contract.pdf.zip image.jpg
|
290 |
-
"From database.sql.zip, remove configuration.ini.", zip -d database.sql.zip configuration.ini
|
291 |
-
Duplicate backups to videos_backup including all subdirectories, cp -r backups videos_backup
|
292 |
-
"List all ""important"" files with sizes that can be read by humans.",ls -h *important*
|
293 |
-
"Prompt before overwriting contract.pdf in videos, treat destination as file, and move only if newer",mv -iuT contract.pdf videos
|
294 |
-
"List all files, arranged by size, with the word ""notes"" in their names.",ls -S *notes*
|
295 |
-
"List all files in the current directory with detailed information, then exclude directories","ls -al | grep -v ""^d"""
|
296 |
-
"Without asking, make a backup, and force copy script.py to projects_backup while maintaining attributes", cp -f -p -b script.py projects_backup
|
297 |
-
"Display configuration.ini, showing line numbers and non-printing characters, with a '$' at the end of each line",cat -n -v -e configuration.ini
|
298 |
-
Show directories themselves along with detailed information,ls -ld
|
299 |
-
Transfer executable.exe as a normal file to photos.,mv -T executable.exe photos
|
300 |
-
"List every file whose name begins with ""image"" and displays the inode numbers.",ls -i image*
|
301 |
-
Print files listed individually,ls -1
|
302 |
-
Transfer policy.pdf to templates_backup while keeping all properties intact.,cp -a policy.pdf templates_backup
|
303 |
-
"Ask before replacing proposal.docx in archives, treat destination as file, and move only if newer",mv -iTu proposal.docx archives
|
304 |
-
Replace policy.pdf in music without asking,mv -f policy.pdf music
|
305 |
-
Files should be sorted in reverse order.,ls -r
|
306 |
-
Find files with a size of precisely 50 bytes., find . -size 50c
|
307 |
-
List contents of photo.png with buffered output suppression, cat -u photo.png
|
308 |
-
Unzip files from document.docx.zip quietly, unzip -q document.docx.zip
|
309 |
-
Extract audio.mp3 that is encrypted.Zip file protected with '*.pdf', unzip -P *.pdf audio.mp3.zip
|
310 |
-
"Extract configuration.ini.zip, but only the most recent files.", unzip -U configuration.ini.zip
|
311 |
-
Replace temp with audio.mp3 if it's newer or doesn't exist,mv -u audio.mp3 temp
|
312 |
-
Update existing files in script.py.zip, zip -u script.py.zip [file1]
|
313 |
-
Take report.pdf out of the audio.mp3.zip., zip -d audio.mp3.zip report.pdf
|
314 |
-
Print a new line for every file.,ls -1
|
315 |
-
Display script.py with line endings, cat -E script.py
|
316 |
-
"After providing a thorough description of every file in the current directory, remove directories.","ls -al | grep -v ""^d"""
|
317 |
-
Output the last 100 lines of policy.pdf,cat policy.pdf | tail -n 100
|
318 |
-
Show report.pdf with every control character present., cat -A report.pdf
|
319 |
-
Print the contents of audio.mp3 with non-blank line numbering., cat -b audio.mp3
|
320 |
-
Update existing files with newer versions from policy.pdf.zip, unzip -U policy.pdf.zip
|
321 |
-
Compress files using gzip, find . -type f -exec gzip {} \
|
322 |
-
Take out only the most recent files from image.jpg.zip., unzip -U image.jpg.zip
|
323 |
-
Extract files from policy.pdf.zip into templates_backup, unzip -d templates_backup policy.pdf.zip
|
324 |
-
Print document.docx contents with non-blank line numbering, cat -b document.docx
|
325 |
-
Display the line ends for script.py, cat -E script.py
|
326 |
-
"Display executable.exe, showing line numbers and non-printing characters",cat -n -v executable.exe
|
327 |
-
configuration.ini should be moved to documents. handling it like any other file,mv -T configuration.ini documents
|
328 |
-
Change to logs_archive and extract files from policy.pdf.zip, unzip -C logs_archive policy.pdf.zip
|
329 |
-
Clone policy.pdf to output and make backups of existing files,cp -b policy.pdf output
|
330 |
-
Show the names of the directories rather than their contents.,ls -d
|
331 |
-
Files in memo.txt.zip are shown., unzip -l memo.txt.zip
|
332 |
-
List files sorted by modification time and display file sizes in human-readable format,ls -lt -h
|
333 |
-
Recursively list the directory tree,ls -R
|
334 |
-
"Retrieve proposal.docx.zip, quietly (no output) to directory backup",unzip -q -d backup proposal.docx.zip
|
335 |
-
Extract files from presentation.pptx.zip quietly, unzip -q presentation.pptx.zip
|
336 |
-
"Compress files document.docx, memo.txt, video.mp4 into report.pdf.zip, excluding '*.tmp' files, preserving paths, verbose output",zip -x '*.tmp' -r -v report.pdf.zip document.docx memo.txt video.mp4
|
337 |
-
"Package files image.jpg, image.jpg, audio.mp3 into proposal.docx.zip, preserving paths, using password 'secure123'",zip -r -P secure123 proposal.docx.zip image.jpg image.jpg audio.mp3
|
338 |
-
"Compress files spreadsheet.xlsx, configuration.ini, proposal.docx into contract.pdf.zip with compression level 9",zip -9 contract.pdf.zip spreadsheet.xlsx configuration.ini proposal.docx
|
339 |
-
List all files in the current directory,ls -a
|
340 |
-
Recursively list subdirectories and display directory structure,ls -Rd
|
341 |
-
Print presentation.pptx without any warning errors, cat -q presentation.pptx
|
342 |
-
"Treat the destination as a file, prompt before overwriting database.sql in photos, and print verbose information.",mv -iTv database.sql photos
|
343 |
-
Search for empty files, find . -type f -empty
|
344 |
-
Extract files with verbose output from executable.exe.zip, unzip -v executable.exe.zip
|
345 |
-
Recursively list directory contents,ls -R
|
346 |
-
Show buffered output suppressed for contract.pdf, cat -u contract.pdf
|
347 |
-
"Keep a copy of script.py, avoid overwriting, and provide detailed feedback.",mv -nbv script.py [directory_name]
|
348 |
-
List the contents of video.mp4 while suppressing the repetitive blank lines., cat -s video.mp4
|
349 |
-
Duplicate database.sql to projects_backup and backup existing files, cp -b -p database.sql projects_backup
|
350 |
-
Create zip of reports and its contents, zip -r reports reports
|
351 |
-
Zip memo.txt ignoring directory structure, zip -j [file_name].zip memo.txt
|
352 |
-
"Compress files report.pdf, photo.png, database.sql into contract.pdf.zip, storing symbolic links, silently",zip -y -q contract.pdf.zip report.pdf photo.png database.sql
|
353 |
-
Output the first 15 lines of audio.mp3,cat audio.mp3 | head -n 15
|
354 |
-
Show files having output that is colourized.,ls -G
|
355 |
-
Clone executable.exe to videos_backup with hard linking, cp -l executable.exe videos_backup
|
356 |
-
Transfer executable.exe as a normal file to photos.,mv -T executable.exe photos
|
357 |
-
Show the inode numbers for files.,ls -i
|
358 |
-
"After providing a thorough description of every file in the current directory, remove directories.","ls -al | grep -v ""^d"""
|
359 |
-
Retrieve script.py encrypted.'*.sql' as the password for zip, unzip -P *.sql script.py.zip
|
360 |
-
Change the default order of sorting.,ls -r
|
361 |
-
"Concatenate configuration.ini and script.py, numbering all output lines",cat -n configuration.ini script.py
|
362 |
-
"Create a new directory called ""templates"" and create symbolic link named ""symlink"" pointing to ""images_backup"".",mkdir templates && ln -s images_backup symlink
|
363 |
-
"List files with complete information organised by size and modification time in reverse order, then show the first 15 lines.",ls -Sltr | head -n 15
|
364 |
-
Clone policy.pdf to documents_archive and forcefully substitute existing files, cp -f policy.pdf documents_archive
|
365 |
-
Extract files with verbose output from executable.exe.zip, unzip -v executable.exe.zip
|
366 |
-
"Out of image.jpg.zip, remove policy.pdf.", zip -d image.jpg.zip policy.pdf
|
367 |
-
"Create a new directory called ""templates"" and create symbolic link named ""symlink"" pointing to ""images_backup"".",mkdir templates && ln -s images_backup symlink
|
368 |
-
Move database.sql to contract.pdf.zip and add it., zip -m contract.pdf.zip database.sql
|
369 |
-
Print inode numbers for each file,ls -i
|
370 |
-
"Prior to files, list folders.",ls --group-directories-first
|
371 |
-
"Place contract.pdf in templates considering it as a file, not a directory",mv -T contract.pdf templates
|
372 |
-
Replace any files that are currently in projects with script.py,mv -f script.py projects
|
373 |
-
Copy video.mp4 to music_library and prompt for confirmation before replacing,cp -i video.mp4 music_library
|
374 |
-
"Display tabs as ~For photo.png, I", cat -T photo.png
|
375 |
-
"Copy spreadsheet.xlsx to documents_backup, ensuring that the user approves the overwrite.", cp -i spreadsheet.xlsx documents_backup
|
376 |
-
Create new archive photo.png.zip from video.mp4, zip -c photo.png.zip video.mp4
|
377 |
-
Find directories with names starting with 'dir',"find . -type d -name ""dir*"""
|
378 |
-
Print document.docx making visible all control characters., cat -A document.docx
|
379 |
-
Backup current files and mirror audio.mp3 to archive., cp -b -p audio.mp3 archive
|
380 |
-
Retrieve script.py encrypted.'*.sql' as the password for zip, unzip -P *.sql script.py.zip
|
381 |
-
"Create directories projects, presentations, music and parent directories if they do not exist with verbose output",mkdir -p -v projects && mkdir -p -v presentations && mkdir -p -v music
|
382 |
-
Copy configuration.ini to images_backup while keeping all of its properties.,cp -a configuration.ini images_backup
|
383 |
-
"Create a backup of configuration.ini, do not overwrite, display verbose output, and treat destination as file",mv -bnvT configuration.ini [directory_name]
|
384 |
-
Move document.docx to scripts_backup and force overwrite it., cp -f document.docx scripts_backup
|
385 |
-
Examine audio.mp3.zip for mistakes., zip -T audio.mp3.zip
|
386 |
-
Prompt before overwriting images with executable.exe,mv -i executable.exe images
|
387 |
-
Move policy.pdf to databases without overwriting,mv -n policy.pdf databases
|
388 |
-
Verify integrity of image.jpg.zip, zip -T image.jpg.zip
|
389 |
-
Compress temp and its contents, zip -r temp temp
|
390 |
-
"Before forcibly transferring report.pdf to photos, make a backup of it.",mv -bf report.pdf photos
|
391 |
-
Display hidden files and directories with extensive information in a lengthy manner.,ls -al
|
392 |
-
List contents of document.docx with tabs shown as ^I, cat -T document.docx
|
393 |
-
Duplicate configuration.ini to videos_backup and retain all attributes,cp -a configuration.ini videos_backup
|
394 |
-
Update existing files with newer versions from policy.pdf.zip, unzip -U policy.pdf.zip
|
395 |
-
Sort files by date of modification in reverse order.,ls -r
|
396 |
-
Remove all files with the name photo.png., find . -name photo.png -exec rm {} \
|
397 |
-
Archive policy.pdf into new audio.mp3.zip, zip -c audio.mp3.zip policy.pdf
|
398 |
-
Create a backup and force move configuration.ini to documents,mv -fb configuration.ini documents
|
399 |
-
Replicate image.jpg to backup with hard links, cp -l image.jpg backup
|
400 |
-
Show suppressed buffered output for script.py, cat -u script.py
|
401 |
-
Use hard links to replicate document.docx to scripts_backup., cp -l document.docx scripts_backup
|
402 |
-
Filter files in backups based on *.txt and move them to reports_archive,"grep ""*.txt"" backups/* | xargs -I {} mv {} reports_archive"
|
403 |
-
Pack music and all its files into archive, zip -r music music
|
404 |
-
"Unarchive policy.pdf.zip, quietly and extracting to standard output to directory backup",unzip -q -p -d backup policy.pdf.zip
|
405 |
-
Compile and transfer photo.png to photo.png.zip., zip -u photo.png.zip photo.png
|
406 |
-
Show directories before files.,ls --group-directories-first
|
407 |
-
Extract files with verbose output from document.docx.zip, unzip -v document.docx.zip
|
408 |
-
"Ask before replacing proposal.docx in archives, treat destination as file, and move only if newer",mv -iTu proposal.docx archives
|
409 |
-
Move video.mp4 to music_library and request confirmation from the user to see if the files are there.,cp -i video.mp4 music_library
|
410 |
-
"If video.mp4 is outdated or doesn't exist, move it to archives.",mv -u video.mp4 archives
|
411 |
-
"List files having coloured output, sorted in reverse order by size and modification time.",ls -SltrG
|
412 |
-
Verbose extraction of contract.pdf.zip, unzip -v contract.pdf.zip
|
413 |
-
"Force copy script.py to downloads_archive without prompting, preserving attributes, and creating a backup", cp -f -p -b script.py downloads_archive
|
414 |
-
"Zip files database.sql, configuration.ini, spreadsheet.xlsx into configuration.ini.zip, compressing with best compression, excluding '*.log' files",zip -9 -x '*.log' configuration.ini.zip database.sql configuration.ini spreadsheet.xlsx
|
415 |
-
"Sort files by size and display file sizes in human-readable format, then display the last 5 lines",ls -lSh | tail -n 5
|
416 |
-
Shift video.mp4 to projects treating it as a non-directory,mv -T video.mp4 projects
|
417 |
-
Display files sorted by file size,ls -S
|
418 |
-
"List subdirectories recursively, with human-readable sizes, colours, and extensive information.",ls -RdlhG
|
419 |
-
Extract the files from audio.mp3.zip by navigating to temp_folder., unzip -C temp_folder audio.mp3.zip
|
420 |
-
Copy contract.pdf to temp_folder and create a hard link, cp -l contract.pdf temp_folder
|
421 |
-
Copy video.mp4 to music_library and interactively prompt for overwrite, cp -i video.mp4 music_library
|
422 |
-
"When extracting proposal.docx.zip, overwrite any existing files.", unzip -o proposal.docx.zip
|
423 |
-
Take script.py out of the proposal.docx.zip., zip -d proposal.docx.zip script.py
|
424 |
-
List directories without their contents,ls -d
|
425 |
-
Replace videos with proposal.docx if it's newer or doesn't exist,mv -u proposal.docx videos
|
426 |
-
Enable colorized output,ls -G
|
427 |
-
Copy configuration.ini to photos_backup and preserve all attributes,cp -a configuration.ini photos_backup
|
428 |
-
List file sizes in a way understandable to humans,ls -h
|
429 |
-
"Create a backup of script.py, regard the destination as a file, display detailed feedback, and refrain from overwriting.",mv -nbvT script.py [directory_name]
|
430 |
-
Find files larger than 1 megabyte., find . -size +1M
|
431 |
-
Print policy.pdf with tabs represented as ^I, cat -T policy.pdf
|
432 |
-
Display files in configuration.ini.zip, unzip -l configuration.ini.zip
|
433 |
-
Move document.docx into archive script.py.zip, zip -m script.py.zip document.docx
|
434 |
-
Display files with colorized output,ls -G
|
435 |
-
"Make a copy of executable.exe, don't replace it, and output verbosely",mv -bnv executable.exe [directory_name]
|
436 |
-
"If the parent directories do not already exist, create the directory videos with verbose output.",mkdir -v -p videos
|
437 |
-
"Create directory ""scripts"" and zip its contents into file ""video.mp4.zip"".",mkdir scripts && zip video.mp4.zip scripts/*
|
438 |
-
Search for files with names ending in '.jpg' or '.png',"find . -type f \( -name ""*.jpg"" -o -name ""*.png"" \)"
|
439 |
-
Examine script.py.zip for mistakes., zip -T script.py.zip
|
440 |
-
Show directories before files.,ls --group-directories-first
|
441 |
-
Display directory names instead of their contents,ls -d
|
442 |
-
Move configuration.ini into images in the same way that you would any other file.,mv -T configuration.ini images
|
443 |
-
Avoid replacing configuration.ini with an already-existing file in projects.,mv -n configuration.ini projects
|
444 |
-
"Concatenate policy.pdf and document.docx, numbering all output lines and showing non-printing characters and tabs as spaces",cat -n -vT policy.pdf document.docx
|
445 |
-
Clone executable.exe to music_library with attribute preservation, cp -p executable.exe music_library
|
446 |
-
Files should be listed in the lengthy listing format.,ls -l
|
447 |
-
"Include directories first, then files.",ls --group-directories-first
|
448 |
-
Files should be listed in the lengthy listing format.,ls -l
|
449 |
-
Make a backup of the current files and copy document.docx to temp_folder.,cp -b document.docx temp_folder
|
450 |
-
Files should be sorted by size.,ls -S
|
451 |
-
Display memo.txt with non-blank line numbers, cat -b memo.txt
|
452 |
-
"Unarchive memo.txt.zip, overwriting existing files, to directory scripts_backup",unzip -o -d scripts_backup memo.txt.zip
|
453 |
-
Compress files using gzip, find . -type f -exec gzip {} \
|
454 |
-
Update existing files in script.py.zip, zip -u script.py.zip [file1]
|
455 |
-
Unprompted overwrite current files when extracting script.py.zip, unzip -o script.py.zip
|
456 |
-
"Display directory names only, without their contents",ls -d
|
457 |
-
Backup current files and move reports to backup., cp -b -r reports backup
|
458 |
-
Force copy audio.mp3 to templates_backup without prompting, cp -f audio.mp3 templates_backup
|
459 |
-
Show line numbers for presentation.pptx, cat -n presentation.pptx
|
460 |
-
Delete files with name document.docx, find . -name document.docx -exec rm {} \
|
461 |
-
Search for empty directories, find . -type d -empty
|
462 |
-
List contents of contract.pdf with all control characters displayed, cat -A contract.pdf
|
463 |
-
Print document.docx making visible all control characters., cat -A document.docx
|
464 |
-
List the contents of audio.mp3 while displaying each control character., cat -A audio.mp3
|
465 |
-
List each line ending in contract.pdf in the contents., cat -E contract.pdf
|
466 |
-
Show configuration.ini contents with repeated empty lines suppressed, cat -s configuration.ini
|
467 |
-
Display the line ends for proposal.docx, cat -E proposal.docx
|
468 |
-
Files from memo.txt.zip should be extracted into projects_backup., unzip -d projects_backup memo.txt.zip
|
469 |
-
Show only the names of the directories; show nothing inside.,ls -d
|
470 |
-
"If audio.mp3 is more recent, update it in executable.exe.zip.", zip -f executable.exe.zip audio.mp3
|
471 |
-
Copy files to images, find . -name [file_name] -exec cp {} images \
|
472 |
-
"Move proposal.docx to archives, handling it like it wasn't a directory.",mv -T proposal.docx archives
|
473 |
-
Show photo.png with characters that don't print, cat -v photo.png
|
474 |
-
Verbose output should be displayed while extracting configuration.ini.zip., unzip -v configuration.ini.zip
|
475 |
-
List file sizes in a manner that is comprehensible to people.,ls -h
|
476 |
-
"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
|
477 |
-
"Move proposal.docx to output, then prompt for a file replacement.", cp -i proposal.docx output
|
478 |
-
Take executable.exe out of the contract.pdf.zip., zip -d contract.pdf.zip executable.exe
|
479 |
-
"From image.jpg.zip, remove contract.pdf.", zip -d image.jpg.zip contract.pdf
|
480 |
-
Sort files by size and display detailed information in long format,ls -Sl
|
481 |
-
Display configuration.ini with suppressed empty lines, cat -s configuration.ini
|
482 |
-
Output the last 25 lines of contract.pdf,cat contract.pdf | tail -n 25
|
483 |
-
Unpack script.py.zip with password 'pass123' and preserving permissions to directory scripts_backup,unzip -P pass123 -K -d scripts_backup script.py.zip
|
484 |
-
List directories themselves with colored output and detailed information,ls -dGl
|
485 |
-
Mirror spreadsheet.xlsx to downloads_archive using hard links, cp -l spreadsheet.xlsx downloads_archive
|
486 |
-
"Concatenate configuration.ini and script.py, numbering all output lines",cat -n configuration.ini script.py
|
487 |
-
"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
|
488 |
-
Search for files larger than 1MB, find . -size +1M
|
489 |
-
Sort files by size and modification time in reverse order with human-readable sizes,ls -Sltrh
|
490 |
-
Show audio.mp3 with error messages suppressed, cat -q audio.mp3
|
491 |
-
Show directories themselves along with detailed information,ls -ld
|
492 |
-
Check that configuration.ini.zip is intact., unzip -t configuration.ini.zip
|
493 |
-
"Transfer archives to downloads_archive and, if required, prompt before overwriting",cp -ir archives downloads_archive
|
494 |
-
List file sizes in a manner that is comprehensible to people.,ls -h
|
495 |
-
"Unarchive memo.txt.zip, overwriting existing files, to directory scripts_backup",unzip -o -d scripts_backup memo.txt.zip
|
496 |
-
Zip memo.txt ignoring directory structure, zip -j [file_name].zip memo.txt
|
497 |
-
Duplicate presentation.pptx to templates_backup and create backup copies,cp -b presentation.pptx templates_backup
|
498 |
-
Show line numbers for presentation.pptx that are not blank., cat -b presentation.pptx
|
499 |
-
Show directories prioritized over files,ls --group-directories-first
|
500 |
-
"Zip files executable.exe, script.py, configuration.ini into script.py.zip, using compression level 6, verbose output, including empty directories",zip -6 -v -r0 script.py.zip executable.exe script.py configuration.ini
|
501 |
-
Prompt before overwriting policy.pdf in photos_backup, cp -i policy.pdf photos_backup
|
502 |
-
"Duplicate spreadsheet.xlsx to music_library and keep attributes unchanged, creating a hard link, and making a backup", cp -p -l -b spreadsheet.xlsx music_library
|
503 |
-
List spreadsheet.xlsx contents with suppression of repeated empty lines, cat -s spreadsheet.xlsx
|
504 |
-
"When transferring to photos, avoid overwriting configuration.ini.",mv -n configuration.ini photos
|
505 |
-
Backup temp to archive and backup existing files, cp -b -r temp archive
|
506 |
-
Replicate audio.mp3 to logs_archive while retaining its attributes and creating a hard link, cp -p -l audio.mp3 logs_archive
|
507 |
-
Search for files named contract.pdf, find . -name contract.pdf
|
508 |
-
"List every file with the word ""backup"" in its name, together with all relevant details.",ls -l *backup*
|
509 |
-
"List the contents of a directory, including any hidden files or directories.",ls -a
|
510 |
-
"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
|
511 |
-
Establish a hard link to move policy.pdf to photos_backup., cp -l policy.pdf photos_backup
|
512 |
-
Compress files using gzip, find . -type f -execdir gzip {} \
|
513 |
-
"List all files, arranged by size, with the word ""notes"" in their names.",ls -S *notes*
|
514 |
-
"Prompt before overwriting report.pdf in reports, treat destination as file, and display verbose output",mv -iTv report.pdf reports
|
515 |
-
Copy image.jpg to temp_folder while maintaining properties,cp -a image.jpg temp_folder
|
516 |
-
"Subdirectories are listed recursively, and the directory structure is displayed with coloured output.",ls -RdG
|
517 |
-
"Before replacing archives with audio.mp3, prompt",mv -i audio.mp3 archives
|
518 |
-
Locate files named photo.png, find . -name photo.png
|
519 |
-
Show every file and folder recursively,ls -R
|
520 |
-
Check for updates and add image.jpg to script.py.zip, zip -f script.py.zip image.jpg
|
521 |
-
Files from video.mp4.zip should be extracted into temp_folder., unzip -d temp_folder video.mp4.zip
|
522 |
-
Take remove the files from contract.pdf.zip that provide verbose output., unzip -v contract.pdf.zip
|
523 |
-
Make a copy of contract.pdf in documents_backup and forcefully replace any existing files., cp -f contract.pdf documents_backup
|
524 |
-
Print presentation.pptx using the symbol ^ for the tabs.I, cat -T presentation.pptx
|
525 |
-
Show contents of contract.pdf.zip, unzip -l contract.pdf.zip
|
526 |
-
"Sort all files that start with ""data"" backwards.",ls -r data*
|
527 |
-
Create directory downloads and parent directories if they do not exist,mkdir -p downloads
|
528 |
-
Copy policy.pdf to documents_archive and prompt before overwriting if necessary,cp -i policy.pdf documents_archive
|
529 |
-
"Make a copy of executable.exe, don't replace it, and output verbosely",mv -bnv executable.exe [directory_name]
|
530 |
-
"Create directories projects, presentations, music and parent directories if they do not exist with verbose output",mkdir -p -v projects && mkdir -p -v presentations && mkdir -p -v music
|
531 |
-
"Copy document.docx to reports_archive, making a backup copy of the original files.", cp -b -p document.docx reports_archive
|
532 |
-
Put report.pdf inside database.sql.zip and delete, zip -m database.sql.zip report.pdf
|
533 |
-
"Create directories temp, presentations, downloads with verbose output",mkdir -v temp && mkdir -v presentations && mkdir -v downloads
|
534 |
-
Put a line between each file you list.,ls -1
|
535 |
-
"List all files in the current directory with detailed information, then extract only the file names",ls -al | awk '{print $9}'
|
536 |
-
Copy report.pdf to logs_archive while maintaining its properties., cp -p report.pdf logs_archive
|
537 |
-
Show non-printing characters for document.docx, cat -v document.docx
|
538 |
-
List each line ending in contract.pdf in the contents., cat -E contract.pdf
|
539 |
-
Filter files in backups based on *.txt and move them to reports_archive,"grep ""*.txt"" backups/* | xargs -I {} mv {} reports_archive"
|
540 |
-
Show files having output that is colourized.,ls -G
|
541 |
-
Take files out of spreadsheet.xlsx.zip and replace any files that already exist., unzip -o spreadsheet.xlsx.zip
|
542 |
-
Refresh document.docx in the zip file photo.png., zip -f photo.png.zip document.docx
|
543 |
-
Copy audio.mp3 to photos_backup and backup existing files,cp -b audio.mp3 photos_backup
|
544 |
-
"Make a backup of spreadsheet.xlsx, regard the destination as a file, don't overwrite, and show verbose output.",mv -bnvT spreadsheet.xlsx [directory_name]
|
545 |
-
Display the line ends for photo.png, cat -E photo.png
|
546 |
-
Take files out of spreadsheet.xlsx.zip and replace any files that already exist., unzip -o spreadsheet.xlsx.zip
|
547 |
-
"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/*
|
548 |
-
Archive audio.mp3 into new configuration.ini.zip, zip -c configuration.ini.zip audio.mp3
|
549 |
-
"Sort files in images by size, then move them to videos_backup",ls -S images | xargs -I {} mv images/{} videos_backup
|
550 |
-
"List files sorted by size and modification time in reverse order with detailed information, then display the first 15 lines",ls -Sltr | head -n 15
|
551 |
-
Show photo.png with every control character present., cat -A photo.png
|
552 |
-
Find the specified pipes., find . -type p
|
553 |
-
Display video.mp4 with non-printing characters, cat -v video.mp4
|
554 |
-
"Package files document.docx, video.mp4, script.py into document.docx.zip, excluding '*.log' files, silently",zip -x '*.log' -q document.docx.zip document.docx video.mp4 script.py
|
555 |
-
Search for files with names containing 'log' and created in the last 24 hours,"find . -type f -name ""*log*"" -ctime -1"
|
556 |
-
Replace reports with configuration.ini only if it's newer or doesn't already exist,mv -u configuration.ini reports
|
557 |
-
Replace outdated files from presentation.pptx.zip with the most recent ones., unzip -U presentation.pptx.zip
|
558 |
-
"When extracting files from report.pdf.zip, ignore paths.", unzip -j report.pdf.zip
|
559 |
-
Display files sorted by last modified time,ls -t
|
560 |
-
Show files in a format with colour.,ls -G
|
561 |
-
Transfer spreadsheet.xlsx to videos and display the output verbosely,mv -v spreadsheet.xlsx videos
|
562 |
-
"If files already exist, duplicate executable.exe to logs_archive using a backup.", cp -b -i executable.exe logs_archive
|
563 |
-
Make a backup of the current files and copy photo.png to logs_archive.,cp -b photo.png logs_archive
|
564 |
-
Move audio.mp3 to music only if it's newer or doesn't already exist,mv -u audio.mp3 music
|
565 |
-
Generate a hard link of configuration.ini in scripts_backup, cp -l configuration.ini scripts_backup
|
566 |
-
Replace logs with audio.mp3 without confirmation,mv -f audio.mp3 logs
|
567 |
-
Move video.mp4 to music_library and request confirmation from the user to see if the files are there.,cp -i video.mp4 music_library
|
568 |
-
Print executable.exe while preventing the display of several blank lines., cat -s executable.exe
|
569 |
-
Copy spreadsheet.xlsx to logs_archive maintaining all attributes,cp -a spreadsheet.xlsx logs_archive
|
570 |
-
Transfer document.docx to downloads_archive and make a backup if files already exist,cp -b document.docx downloads_archive
|
571 |
-
Files from executable.exe.zip should be extracted into reports_archive., unzip -d reports_archive executable.exe.zip
|
572 |
-
Display spreadsheet.xlsx with non-printing characters visible,cat -v spreadsheet.xlsx
|
573 |
-
"In presentation.pptx.zip, add document.docx and check for updates.", zip -f presentation.pptx.zip document.docx
|
574 |
-
"Duplicate presentation.pptx to archive with user confirmation for overwrite, preserving attributes, and creating a backup", cp -i -p -b presentation.pptx archive
|
575 |
-
Provide password '*.txt' to extract policy.pdf.zip, unzip -P *.txt policy.pdf.zip
|
576 |
-
Display the line ends for proposal.docx, cat -E proposal.docx
|
577 |
-
Output image.jpg with visible non-printing characters., cat -v image.jpg
|
578 |
-
Display memo.txt with non-blank line numbers, cat -b memo.txt
|
579 |
-
Extract files from policy.pdf.zip into templates_backup, unzip -d templates_backup policy.pdf.zip
|
580 |
-
Create directory music with verbose output,mkdir -v music
|
581 |
-
Clone database.sql with preserving attributes to documents_archive.,cp -a database.sql documents_archive
|
582 |
-
Extract only updated files from policy.pdf.zip, unzip -U policy.pdf.zip
|
583 |
-
Locate files smaller than 100KB, find . -size -100k
|
584 |
-
Extract only updated files from policy.pdf.zip, unzip -U policy.pdf.zip
|
585 |
-
Look for empty directories, find . -type d -empty
|
586 |
-
"Prior to replacing script.py in images, get permission. Treat the destination file.",mv -Ti script.py images
|
587 |
-
"Compress files video.mp4, contract.pdf, video.mp4 into spreadsheet.xlsx.zip, quietly, using password 'secure123', preserving paths",zip -q -r -P secure123 spreadsheet.xlsx.zip video.mp4 contract.pdf video.mp4
|
588 |
-
"Package files image.jpg, image.jpg, audio.mp3 into proposal.docx.zip, preserving paths, using password 'secure123'",zip -r -P secure123 proposal.docx.zip image.jpg image.jpg audio.mp3
|
589 |
-
"Move contract.pdf to logs with force, prompt for confirmation, and move only if newer",mv -ifu contract.pdf logs
|
590 |
-
Make directory logs and output verbosely,mkdir -v logs
|
591 |
-
Extract files without directory structure from audio.mp3.zip, unzip -j audio.mp3.zip
|
592 |
-
Recursive copying is used to preserve the properties of temp after a backup to photos_backup., cp -r -p temp photos_backup
|
593 |
-
"Make ""templates"" the directory and zip the files ""script.py, ""contract.pdf, and ""executable.exe"" into it.",mkdir templates && zip templates.zip script.py contract.pdf executable.exe
|
594 |
-
Print presentation.pptx without any warning errors, cat -q presentation.pptx
|
595 |
-
Locate files named photo.png, find . -name photo.png
|
596 |
-
"Save a backup of proposal.docx, do not overwrite, show verbose feedback, and treat destination as file",mv -nbvT proposal.docx [directory_name]
|
597 |
-
Show buffered output suppressed for photo.png, cat -u photo.png
|
598 |
-
Files should be listed according to size.,ls -S
|
599 |
-
"Transfer logs to backup with recursive copying, preserving attributes, and creating a backup", cp -r -p -b logs backup
|
600 |
-
Show directories before files.,ls --group-directories-first
|
601 |
-
"Make a copy of spreadsheet.xlsx in scripts_backup, but before overwriting, get permission.",cp -i spreadsheet.xlsx scripts_backup
|
602 |
-
Display hidden files and directories in long format with detailed information and human-readable sizes,ls -alh
|
603 |
-
Create a hard link by moving script.py to images_backup., cp -l script.py images_backup
|
604 |
-
Make a hard link duplicate of proposal.docx in projects_backup., cp -l proposal.docx projects_backup
|
605 |
-
"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]
|
606 |
-
"Enumerate all files, even hidden ones, with the word ""log"" in their names.",ls -a *log*
|
607 |
-
"Transfer report.pdf forcefully to presentations, asking for confirmation, and treating destination as a file",mv -ifT report.pdf presentations
|
608 |
-
Show tabs as ^I for presentation.pptx, cat -T presentation.pptx
|
609 |
-
Copy report.pdf to logs_archive while maintaining its properties., cp -p report.pdf logs_archive
|
610 |
-
Show file sizes in a readable format,ls -h
|
611 |
-
Check contents of memo.txt.zip, unzip -l memo.txt.zip
|
612 |
-
Show hidden files and folders in a lengthy format with rich colours and details.,ls -alG
|
613 |
-
Move image.jpg into archive spreadsheet.xlsx.zip, zip -m spreadsheet.xlsx.zip image.jpg
|
614 |
-
Check integrity of spreadsheet.xlsx.zip, unzip -t spreadsheet.xlsx.zip
|
615 |
-
Show hidden files and directories in long format with detailed information,ls -al
|
616 |
-
"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
|
617 |
-
Search for files owned by the user 'user1' or 'user2',find . -type f \( -user user1 -o -user user2 \)
|
618 |
-
Show line endings for audio.mp3, cat -E audio.mp3
|
619 |
-
Pack document.docx into proposal.docx.zip, zip -c proposal.docx.zip document.docx
|
620 |
-
"Zip files database.sql, memo.txt, photo.png into document.docx.zip, excluding '*.log' files, verbose output",zip -x '*.log' -v document.docx.zip database.sql memo.txt photo.png
|
621 |
-
Making a hard link and mirroring proposal.docx to videos_backup while preserving properties, cp -p -l proposal.docx videos_backup
|
622 |
-
Search for standard files., find . -type f
|
623 |
-
Look for block devices, find . -type b
|
624 |
-
Prompt for confirmation before replacing policy.pdf in scripts,mv -i policy.pdf scripts
|
625 |
-
"Concatenate image.jpg and image.jpg, numbering non-empty output lines and showing non-printing characters",cat -b -v image.jpg image.jpg
|
626 |
-
List subdirectories in a recursive manner and show the directory structure.,ls -Rd
|
627 |
-
"Make a hard link, backup, and copy report.pdf to photos_backup while maintaining its properties.", cp -p -l -b report.pdf photos_backup
|
628 |
-
Update image.jpg in script.py.zip if newer, zip -f script.py.zip image.jpg
|
629 |
-
Mirror image.jpg to images_backup and prompt if files already exist,cp -i image.jpg images_backup
|
630 |
-
Unzip files from document.docx.zip ignoring directory structure, unzip -j document.docx.zip
|
631 |
-
Display directory structure recursively,ls -R
|
632 |
-
"Package files contract.pdf, proposal.docx, policy.pdf into presentation.pptx.zip, saving extended attributes, storing file attributes",zip -X -X presentation.pptx.zip contract.pdf proposal.docx policy.pdf
|
633 |
-
Sort files by modification time,ls -t
|
634 |
-
File inode numbers are displayed,ls -i
|
635 |
-
Extract policy.pdf.zip with no password to directory templates_backup,unzip -d templates_backup policy.pdf.zip
|
636 |
-
Output the first 10 lines of photo.png,cat photo.png | head
|
637 |
-
"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
|
638 |
-
Show memo.txt with suppressed buffered output, cat -u memo.txt
|
639 |
-
Recursive copying is used to preserve the properties of music after a backup to documents_backup., cp -r -p music documents_backup
|
640 |
-
Search for files with names containing 'document' and not writable by the group,"find . -type f -name ""*document*"" ! -perm -g=w"
|
641 |
-
List each file on a separate line,ls -1
|
642 |
-
Display file sizes in comprehensible units for humans.,ls -h
|
643 |
-
Create new archive proposal.docx.zip from video.mp4, zip -c proposal.docx.zip video.mp4
|
644 |
-
Compress files using gzip, find . -type f -exec gzip {} \
|
645 |
-
"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
|
646 |
-
Display configuration.ini with line numbers, cat -n configuration.ini
|
647 |
-
Display directories at the top of the list,ls --group-directories-first
|
648 |
-
Show files with colored output,ls -G
|
649 |
-
Transferring spreadsheet.xlsx to archives will replace any preexisting files.,mv -f spreadsheet.xlsx archives
|
650 |
-
"List all files, arranged by size, with the word ""notes"" in their names.",ls -S *notes*
|
651 |
-
Output the first 100 lines of report.pdf,cat report.pdf | head -n 100
|
652 |
-
Move the files to templates_backup after searching projects for *.jpg.,"grep -rl ""*.jpg"" projects | xargs -I {} mv {} templates_backup"
|
653 |
-
"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]
|
654 |
-
Search for files smaller than 100KB, find . -size -100k
|
655 |
-
Rename presentation.pptx to images using force.,mv -f presentation.pptx images
|
656 |
-
Making a hard link and mirroring proposal.docx to videos_backup while preserving properties, cp -p -l proposal.docx videos_backup
|
657 |
-
Display the contents of audio.mp3,cat audio.mp3
|
658 |
-
Output the last 15 lines of presentation.pptx,cat presentation.pptx | tail -n 15
|
659 |
-
Duplicate script.py to templates_backup using hard links, cp -l script.py templates_backup
|
660 |
-
"Compress files database.sql, executable.exe, contract.pdf into database.sql.zip, storing file attributes, excluding '*.tmp' files, silently",zip -X -x '*.tmp' -q database.sql.zip database.sql executable.exe contract.pdf
|
661 |
-
"Move templates to logs_archive, making a backup of all currently stored files.", cp -b -r templates logs_archive
|
662 |
-
"Sort files by modification time and display file sizes in human-readable format, then count the number of lines",ls -lt | awk '{print $5}' | wc -l
|
663 |
-
Freshen report.pdf in contract.pdf.zip, zip -f contract.pdf.zip report.pdf
|
664 |
-
Print video.mp4 contents with line numbering, cat -n video.mp4
|
665 |
-
"Make a backup of audio.mp3, don't replace it, and only move it if it's more recent.",mv -nbu audio.mp3 [directory_name]
|
666 |
-
Make backup copies of memo.txt and duplicate it to templates_backup.,cp -b memo.txt templates_backup
|
667 |
-
Show hidden files and directories in long format with colored output and detailed information,ls -alG
|
668 |
-
"To documents, copy the files.", find . -name [file_name] -exec cp {} documents \
|
669 |
-
Make a copy of image.jpg to images_backup and obtain consent before making any changes.,cp -i image.jpg images_backup
|
670 |
-
Backup music to projects_backup and preserve directory structure, cp -r music projects_backup
|
671 |
-
Compress files using gzip, find . -type f -execdir gzip {} \
|
672 |
-
Show all control characters for script.py, cat -A script.py
|
673 |
-
Extract files from memo.txt.zip into backup, unzip -d backup memo.txt.zip
|
674 |
-
"Push database.sql hard to templates, ask for confirmation, and only transfer if there's a newer version available.",mv -ifu database.sql templates
|
675 |
-
"Forcefully move spreadsheet.xlsx to music, but ask for approval",mv -if spreadsheet.xlsx music
|
676 |
-
Verbose extraction of contract.pdf.zip, unzip -v contract.pdf.zip
|
677 |
-
"Make a list of the files in the ""presentations"" directory after creating it.",mkdir presentations && cp presentations/* [destination_directory]
|
678 |
-
List file sizes in a format suitable for humans,ls -h
|
679 |
-
Copy policy.pdf to documents_archive and prompt before overwriting if necessary,cp -i policy.pdf documents_archive
|
680 |
-
"Make a copy of script.py, don't replace it, and output verbosely",mv -bnv script.py [directory_name]
|
681 |
-
"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]
|
682 |
-
Move policy.pdf to databases without overwriting,mv -n policy.pdf databases
|
683 |
-
Display hidden files and directories with detailed information and colors,ls -alG
|
684 |
-
Search for files with names containing 'image' and with execute permissions for others,"find . -type f -name ""*image*"" -perm /o=x"
|
685 |
-
"Move memo.txt to logs_archive, and if the files are already there, create a backup.", cp -b -i memo.txt logs_archive
|
686 |
-
Delete empty directories, find . -type d -empty -delete
|
687 |
-
Provide password '*.mp4' to extract spreadsheet.xlsx.zip, unzip -P *.mp4 spreadsheet.xlsx.zip
|
688 |
-
Clone executable.exe to music_library with attribute preservation, cp -p executable.exe music_library
|
689 |
-
Refresh video.mp4 in the zip file photo.png., zip -f photo.png.zip video.mp4
|
690 |
-
Display audio.mp3 with tabs as ^I, cat -T audio.mp3
|
691 |
-
List files in order of file size,ls -S
|
692 |
-
"List all files having a coloured output that finish in "".py"".",ls -G *.py
|
693 |
-
Duplicate document.docx to videos_backup with preserved attributes, cp -p document.docx videos_backup
|
694 |
-
Display memo.txt with non-blank line numbers, cat -b memo.txt
|
695 |
-
"In photos, prompt before overwriting executable.exe, regard the destination as a file, and only move if it's more recent.",mv -iuT executable.exe photos
|
696 |
-
Display directories only,ls -d
|
697 |
-
Show hidden files and directories in long format with colored output and detailed information,ls -alG
|
698 |
-
Show line numbers for image.jpg, cat -n image.jpg
|
699 |
-
Create new archive photo.png.zip from video.mp4, zip -c photo.png.zip video.mp4
|
700 |
-
"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]
|
701 |
-
Pack memo.txt without paths into archive, zip -j [file_name].zip memo.txt
|
702 |
-
"Recursive copying is used to move reports to photos_backup, maintaining attributes, and making a backup.", cp -r -p -b reports photos_backup
|
703 |
-
"List all the contents in a directory, including any hidden files.",ls -a
|
704 |
-
Show all control characters for proposal.docx, cat -A proposal.docx
|
705 |
-
"List subdirectories in a recursive manner with comprehensive details, and then determine the overall disc consumption.",ls -Rl | du -h
|
706 |
-
Provide password '*.pdf' to extract image.jpg.zip, unzip -P *.pdf image.jpg.zip
|
707 |
-
"Make a backup of report.pdf, relocate it only if it's more recent, and don't replace it.",mv -bnu report.pdf [directory_name]
|
708 |
-
Show inode numbers of each file,ls -i
|
709 |
-
List directories before files,ls --group-directories-first
|
710 |
-
"Make a copy of policy.pdf in downloads_archive, but before overwriting, get permission.", cp -i policy.pdf downloads_archive
|
711 |
-
"Without verifying, switch projects for policy.pdf.",mv -f policy.pdf projects
|
712 |
-
Transfer report.pdf to templates_backup and ask for user confirmation if files exist,cp -i report.pdf templates_backup
|
713 |
-
"Zip files presentation.pptx, database.sql, executable.exe into photo.png.zip, compressing only '*.txt' files, verbose output",zip -n '*.txt' -v photo.png.zip presentation.pptx database.sql executable.exe
|
714 |
-
"Move proposal.docx to output, then prompt for a file replacement.", cp -i proposal.docx output
|
715 |
-
Create directory music with verbose output,mkdir -v music
|
716 |
-
Move proposal.docx into memo.txt.zip, zip -m memo.txt.zip proposal.docx
|
717 |
-
Into image.jpg put contract.pdf.Zip and remove, zip -u image.jpg.zip contract.pdf
|
718 |
-
Extraction of document.docx.zip in full, unzip -v document.docx.zip
|
719 |
-
Place report.pdf inside of the archive video.mp4.Zip, zip -u video.mp4.zip report.pdf
|
720 |
-
Display memo.txt in quiet mode, cat -q memo.txt
|
721 |
-
Output the first 25 lines of audio.mp3,cat audio.mp3 | head -n 25
|
722 |
-
Zip memo.txt ignoring directory structure, zip -j [file_name].zip memo.txt
|
723 |
-
"Duplicate report.pdf to projects_backup and keep attributes unchanged, creating a hard link, and making a backup", cp -p -l -b report.pdf projects_backup
|
724 |
-
List spreadsheet.xlsx contents with suppression of repeated empty lines, cat -s spreadsheet.xlsx
|
725 |
-
Display files sorted by file size,ls -S
|
726 |
-
"List all files in the current directory with detailed information, then exclude directories","ls -al | grep -v ""^d"""
|
727 |
-
Look for empty files, find . -type f -empty
|
728 |
-
Show document.docx with line numbers that aren't blank., cat -b document.docx
|
729 |
-
Move the files from downloads to output after filtering them using *.sql.,"grep -lR ""*.sql"" downloads | xargs -I {} mv {} output"
|
730 |
-
Show hidden files and folders in a lengthy format with rich colours and details.,ls -alG
|
731 |
-
Search for files with names starting with 'data' and not owned by the user 'admin',"find . -type f -name ""data*"" ! -user admin"
|
732 |
-
Sort files in reverse order,ls -r
|
733 |
-
"Forcefully move image.jpg to archives, prompt before overwriting, and move only if newer",mv -fiu image.jpg archives
|
734 |
-
"Transfer images to scripts_backup with recursive copying, preserving attributes, and creating a backup", cp -r -p -b images scripts_backup
|
735 |
-
Search for directories named *.mp3 in the current directory,"find . -type d -name ""*.mp3"""
|
736 |
-
Display directories at the top of the list,ls --group-directories-first
|
737 |
-
Update existing files with newer versions from policy.pdf.zip, unzip -U policy.pdf.zip
|
738 |
-
Ignore paths when zipping report.pdf, zip -j [file_name].zip report.pdf
|
739 |
-
Replace outdated files from presentation.pptx.zip with the most recent ones., unzip -U presentation.pptx.zip
|
740 |
-
Transfer the files to temp, find . -name [file_name] -exec mv {} temp \
|
741 |
-
Enable colored listing,ls -G
|
742 |
-
"Transfer configuration.ini to reports_archive and, if required, prompt before overwriting",cp --interactive configuration.ini reports_archive
|
743 |
-
Look for files with name memo.txt, find . -name memo.txt
|
744 |
-
Display memo.txt with the error messages hidden, cat -q memo.txt
|
745 |
-
Display characters for database.sql that aren't printed, cat -v database.sql
|
746 |
-
"Files can be sorted based on when they were last modified, and the output can be coloured and presented in a legible fashion.",ls -lt -hG
|
747 |
-
Examine script.py.zip for mistakes., zip -T script.py.zip
|
748 |
-
"List each subdirectory in detail recursively, then tally the total number of directories.","ls -Rd | grep ""/$"" | wc -l"
|
749 |
-
List the contents of database.sql while suppressing buffered output., cat -u database.sql
|
750 |
-
Change permissions of files, find . -type f -exec chmod 644 {} \
|
751 |
-
Print executable.exe while preventing the display of several blank lines., cat -s executable.exe
|
752 |
-
Zip memo.txt without directory structure, zip -j [file_name].zip memo.txt
|
753 |
-
Find directories with names ending in 'backup' and with read permissions for the group,"find . -type d -name ""*backup"" -perm /g=r"
|
754 |
-
Show only the names of the directories; show nothing inside.,ls -d
|
755 |
-
"Force copy report.pdf to images_backup without prompting, preserving attributes, and creating a backup", cp -f -p -b report.pdf images_backup
|
756 |
-
Output the last 25 lines of contract.pdf,cat contract.pdf | tail -n 25
|
757 |
-
"Forcefully move spreadsheet.xlsx to music, but ask for approval",mv -if spreadsheet.xlsx music
|
758 |
-
Extract files from photo.png.zip into templates_backup, unzip -d templates_backup photo.png.zip
|
759 |
-
List files sorted by modification time and display file sizes in human-readable format,ls -lt -h
|
760 |
-
"Move proposal.docx to archive, and if the files are already there, create a backup.",cp -b proposal.docx archive
|
761 |
-
Move proposal.docx into memo.txt.zip, zip -m memo.txt.zip proposal.docx
|
762 |
-
Find files modified within the last 7 days,find . -type f -mtime -7
|
763 |
-
Erase photo.png from script.py.zip, zip -d script.py.zip photo.png
|
764 |
-
Make a backup of the current files and copy document.docx to temp_folder.,cp -b document.docx temp_folder
|
765 |
-
"Make a hard link, backup, and duplicate database.sql to images_backup while maintaining all attributes.", cp -p -l -b database.sql images_backup
|
766 |
-
"Make a backup of spreadsheet.xlsx, regard the destination as a file, don't overwrite, and show verbose output.",mv -bnvT spreadsheet.xlsx [directory_name]
|
767 |
-
Delete files with name memo.txt, find . -name memo.txt -execdir rm {} \
|
768 |
-
File compression with gzip, find . -type f -exec gzip {} \
|
769 |
-
Remove spreadsheet.xlsx.zip without showing the result, unzip -q spreadsheet.xlsx.zip
|
770 |
-
Print script.py using the symbol ^ for the tabs.I, cat -T script.py
|
771 |
-
Create a backup by recursively copying templates to templates_backup while preserving its properties., cp -r -p -b templates templates_backup
|
772 |
-
List contents of script.py with buffered output suppression, cat -u script.py
|
773 |
-
Display file inode numbers,ls -i
|
774 |
-
Remove presentation.pptx from proposal.docx.zip, zip -d proposal.docx.zip presentation.pptx
|
775 |
-
Extract encrypted spreadsheet.xlsx.zip with password '*.exe', unzip -P *.exe spreadsheet.xlsx.zip
|
776 |
-
"If the parent directories and directory downloads don't already exist, create them with verbose output.",mkdir -p -v downloads
|
777 |
-
Display report.pdf with tabs as ^I, cat -T report.pdf
|
778 |
-
Locate regular files, find . -type f
|
779 |
-
"Transfer the ""policy.pdf"" and ""photo.png"" files from ""videos"" to ""presentations"".",mv /videos/policy.pdf /presentations/ | mv /videos/photo.png /presentations/
|
780 |
-
Recursive copying is used to transfer reports to output while maintaining attributes., cp -r -p reports output
|
781 |
-
Take the files out of document.docx.into images_backup using zip, unzip -d images_backup document.docx.zip
|
782 |
-
Copy photo.png to documents_backup and ask for confirmation from the user,cp -i photo.png documents_backup
|
783 |
-
Output the last 100 lines of policy.pdf,cat policy.pdf | tail -n 100
|
784 |
-
"Transfer contract.pdf to projects, replacing current files without permission",mv -f contract.pdf projects
|
785 |
-
"Treat the destination as a file, prompt before overwriting contract.pdf in logs, and print verbose information.",mv -iTv contract.pdf logs
|
786 |
-
Seek for files bearing the policy.pdf name., find . -name policy.pdf
|
787 |
-
"Backup databases to backup and maintain its attributes with recursive copying, creating a backup", cp -r -p -b databases backup
|
788 |
-
Place report.pdf inside of the archive video.mp4.Zip, zip -u video.mp4.zip report.pdf
|
789 |
-
"To transfer all of the files from 'scripts' to 'output', first create a directory called 'scripts'.",mkdir /scripts/ | cp /scripts/* /scripts/ | mv /scripts/* /output/
|
790 |
-
"Display document.docx, showing line numbers, non-printing characters, and tabs as spaces",cat -n -vT document.docx
|
791 |
-
Display the line ends for proposal.docx, cat -E proposal.docx
|
792 |
-
Duplicate proposal.docx to scripts_backup with user confirmation for overwrite, cp -i proposal.docx scripts_backup
|
793 |
-
Replicate image.jpg to backup with hard links, cp -l image.jpg backup
|
794 |
-
Verbose mode: Move audio.mp3 to documents,mv -v audio.mp3 documents
|
795 |
-
Silently unzip the files from presentation.pptx.zip., unzip -q presentation.pptx.zip
|
796 |
-
Search files in scripts for *.mp4 and move them to scripts_backup,"grep -rl ""*.mp4"" scripts | xargs -I {} mv {} scripts_backup"
|
797 |
-
Move spreadsheet.xlsx to downloads and ask before overwriting,mv -i spreadsheet.xlsx downloads
|
798 |
-
Transfer policy.pdf to templates_backup while keeping all properties intact.,cp -a policy.pdf templates_backup
|
799 |
-
"Package files image.jpg, image.jpg, audio.mp3 into proposal.docx.zip, preserving paths, using password 'secure123'",zip -r -P secure123 proposal.docx.zip image.jpg image.jpg audio.mp3
|
800 |
-
"Make a backup, then transfer presentation.pptx forcibly to videos.",mv -fb presentation.pptx videos
|
801 |
-
Make audio.mp3.zip that includes report.pdf, zip -c audio.mp3.zip report.pdf
|
802 |
-
Display contents of script.py.zip, unzip -l script.py.zip
|
803 |
-
"Without showing the results, extract photo.png.zip", unzip -q photo.png.zip
|
804 |
-
"Uncompress script.py.zip, testing archive integrity only, verbose output, and listing files only to directory documents_archive",unzip -t -v -l -d documents_archive script.py.zip
|
805 |
-
Copy video.mp4 to music_library and interactively prompt for overwrite, cp -i video.mp4 music_library
|
806 |
-
Show inode numbers for files,ls -i
|
807 |
-
Extract files without paths from policy.pdf.zip, unzip -j policy.pdf.zip
|
808 |
-
Sync the contents of documents_backup with documents. moving files and utilising rsync,rsync -av --remove-source-files documents/ documents_backup
|
809 |
-
Test document.docx.zip for errors, unzip -t document.docx.zip
|
810 |
-
Use recursive copying to move documents to music_library, cp -r documents music_library
|
811 |
-
"Keep a copy of script.py, avoid overwriting, and provide detailed feedback.",mv -nbv script.py [directory_name]
|
812 |
-
Transferring spreadsheet.xlsx to archives will replace any preexisting files.,mv -f spreadsheet.xlsx archives
|
813 |
-
Duplicate audio.mp3 to reports_archive keeping all attributes,cp -a audio.mp3 reports_archive
|
814 |
-
Delete files with name configuration.ini, find . -name configuration.ini -delete
|
815 |
-
Show proposal.docx with error messages suppressed, cat -q proposal.docx
|
816 |
-
List files sorted by size and modification time in reverse order,ls -Sltr
|
817 |
-
Print contract.pdf while suppressing the output from the buffer., cat -u contract.pdf
|
818 |
-
Maintain directory structure and backup logs to archive, cp -r logs archive
|
819 |
-
"List the files, one for each line.",ls -1
|
820 |
-
Extract files silently from configuration.ini.zip, unzip -q configuration.ini.zip
|
821 |
-
Examine image.jpg.zip for mistakes., unzip -t image.jpg.zip
|
822 |
-
Look for files that have the name image.jpg., find . -name image.jpg
|
823 |
-
Duplicate contract.pdf to logs_archive and keep attributes unchanged, cp -p contract.pdf logs_archive
|
824 |
-
Transfer files larger than 1 MB from photos_backup to presentations,find presentations -type f -size +1M -exec mv {} photos_backup \;
|
825 |
-
"Prompt before overwriting database.sql in templates, treating destination as file",mv -iT database.sql templates
|
826 |
-
"If the parent directories and directory photos don't already exist, create them.",mkdir -p photos
|
827 |
-
Freshen report.pdf in contract.pdf.zip, zip -f contract.pdf.zip report.pdf
|
828 |
-
Search for files between 1GB and 2GB in size, find . -size +1G -size -2G
|
829 |
-
Display every character in the control set for video.mp4, cat -A video.mp4
|
830 |
-
"Zip files executable.exe, script.py, configuration.ini into script.py.zip, using compression level 6, verbose output, including empty directories",zip -6 -v -r0 script.py.zip executable.exe script.py configuration.ini
|
831 |
-
Replicate contract.pdf to temp_folder preserving attributes,cp -a contract.pdf temp_folder
|
832 |
-
Print spreadsheet.xlsx with all control characters visible, cat -A spreadsheet.xlsx
|
833 |
-
Look for files under 100 KB in size., find . -size -100k
|
834 |
-
Look for files that are no larger than 1GB or 2GB., find . -size +1G -size -2G
|
835 |
-
Show subdirectories recursively,ls -R
|
836 |
-
"List each subdirectory in detail recursively, then tally the total number of directories.","ls -Rd | grep ""/$"" | wc -l"
|
837 |
-
Extract only newer files from audio.mp3.zip, unzip -U audio.mp3.zip
|
838 |
-
Put audio.mp3 on silent display., cat -q audio.mp3
|
839 |
-
Sort files in descending order,ls -r
|
840 |
-
Display configuration.ini with line numbers, cat -n configuration.ini
|
841 |
-
Take the files out of policy.pdf.zip. disregarding the directory structure, unzip -j policy.pdf.zip
|
842 |
-
"When extracting files from report.pdf.zip, ignore paths.", unzip -j report.pdf.zip
|
843 |
-
Make a hard link to duplicate proposal.docx in scripts_backup., cp -l proposal.docx scripts_backup
|
844 |
-
Display directory names instead of their contents,ls -d
|
845 |
-
Recursively list folders and their contents,ls -R
|
846 |
-
"Compress files report.pdf, photo.png, database.sql into contract.pdf.zip, storing symbolic links, silently",zip -y -q contract.pdf.zip report.pdf photo.png database.sql
|
847 |
-
Copy database.sql to photos_backup and make sure to have permission before deleting old files., cp -i database.sql photos_backup
|
848 |
-
Print the contents of audio.mp3 with non-blank line numbering., cat -b audio.mp3
|
849 |
-
Preserve attributes of policy.pdf while copying to archive, cp -p policy.pdf archive
|
850 |
-
Show hidden files and directories in long format with colored output,ls -alG
|
851 |
-
Look for figurative connections., find . -type l
|
852 |
-
Search for files with names starting with 'data' and not owned by the user 'admin',"find . -type f -name ""data*"" ! -user admin"
|
853 |
-
Display characters for document.docx that aren't printed, cat -v document.docx
|
854 |
-
Display file information in extended format,ls -l
|
855 |
-
"Display directories with comprehensive details, then determine the overall size.",ls -ld */ | du -h --max-depth=0
|
856 |
-
Display hidden files and directories with detailed information and colors,ls -alG
|
857 |
-
Show script.py in tabbed mode as \I, cat -T script.py
|
858 |
-
Print policy.pdf with tabs represented as ^I, cat -T policy.pdf
|
859 |
-
Show database.sql with the blank lines suppressed., cat -s database.sql
|
860 |
-
Extraction of files from database.sql.zip enabling verbose mode, unzip -v database.sql.zip
|
861 |
-
Organise files according to when they were last modified and provide file sizes in a legible manner.,ls -ltSh
|
862 |
-
"Subdirectories are listed recursively, and the directory structure is displayed with coloured output.",ls -RdG
|
863 |
-
Clone policy.pdf to output and ask for permission before replacing,cp -i policy.pdf output
|
864 |
-
"Force copy presentation.pptx to music_library without prompting, preserving attributes, and creating a backup", cp -f -p -b presentation.pptx music_library
|
865 |
-
"Make a backup, then transfer configuration.ini forcibly to presentations.",mv -fb configuration.ini presentations
|
866 |
-
Output the first 25 lines of audio.mp3,cat audio.mp3 | head -n 25
|
867 |
-
Take files out of executable.exe.zip and replace any files that already exist., unzip -o executable.exe.zip
|
868 |
-
Ignore paths when extracting files from database.sql.zip, unzip -j database.sql.zip
|
869 |
-
"If files already exist, replicate script.py to backup and make backups.",cp -b script.py backup
|
870 |
-
Search for files with names starting with 'file' and modified in the last 7 days,"find . -type f -name ""file*"" -mtime -7"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|