Rea-per commited on
Commit
5eb487b
1 Parent(s): a5d38c2

Upload 3 files

Browse files
Files changed (3) hide show
  1. test.csv +436 -0
  2. train.csv +0 -0
  3. val.csv +0 -0
test.csv ADDED
@@ -0,0 +1,436 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,Text,Code
2
+ 8,Display hidden files along with normal files,ls -a
3
+ 6307,Zip configuration.ini ignoring directory structure, zip -j presentation.pptx.zip configuration.ini
4
+ 994,Ignore paths when extracting files from contract.pdf.zip, unzip -j contract.pdf.zip
5
+ 7966,Extract files from image.jpg.zip and change to documents_backup, unzip -C documents_backup image.jpg.zip
6
+ 2614,"Recursive copying is used to move music to documents_archive, maintaining attributes, and making a backup.", cp -r -p -b music documents_archive
7
+ 1513,"Extract executable.exe.zip, then update your files with the latest versions.", unzip -U executable.exe.zip
8
+ 3001,Extract database.sql.zip with no password to directory projects_backup,unzip -d projects_backup database.sql.zip
9
+ 5677,"Display every file, even those that are hidden.",ls -a
10
+ 6768,Make a fresh archive with executable.exe.zip from executable.exe, zip -c executable.exe.zip executable.exe
11
+ 2941,Display document.docx with suppressed empty lines, cat -s document.docx
12
+ 511,List the files in order of modification date.,ls -t
13
+ 7735,"Make a copy of presentation.pptx in images_backup, but before overwriting, get permission.", cp -i presentation.pptx images_backup
14
+ 1055,Make new archive photo.png.zip with audio.mp3, zip -c photo.png.zip audio.mp3
15
+ 1056,Freshen policy.pdf in spreadsheet.xlsx.zip, zip -f spreadsheet.xlsx.zip policy.pdf
16
+ 1595,Zip proposal.docx without any folder organization, zip -j configuration.ini.zip proposal.docx
17
+ 7571,"Sort all files that start with ""data"" backwards.",ls -r data*
18
+ 4279,Transfer document.docx to music_library while keeping all of its properties., cp -p document.docx music_library
19
+ 6431,Display database.sql with tabs as ^I, cat -T database.sql
20
+ 2189,"Create directory ""scripts"" and find files matching pattern ""*.exe"" in it.","mkdir scripts && find scripts -name ""**.exe*"""
21
+ 8625,Display the line ends for memo.txt, cat -E memo.txt
22
+ 554,List each file on a single line.,ls -1
23
+ 6323,Look for block devices, find . -type b
24
+ 7407,"Generate directory ""documents"" and list contents of ""documents"".",mkdir documents && ls documents
25
+ 856,"Recursive copying is used to move projects to scripts_backup, maintaining attributes, and making a backup.", cp -r -p -b projects scripts_backup
26
+ 668,Put script.py in the designated directory. thinking about it as a file rather than a directory,mv -T script.py temp
27
+ 1193,Display video.mp4 with line endings, cat -E video.mp4
28
+ 8238,"Uncompress configuration.ini.zip, testing archive integrity only, verbose output, and listing files only to directory templates_backup",unzip -t -v -l -d templates_backup configuration.ini.zip
29
+ 6504,"Disentangle memo.txt.zip, preserving permissions, overwriting existing files, and listing files only to directory downloads_archive",unzip -K -o -l -d downloads_archive memo.txt.zip
30
+ 4756,"Release memo.txt.zip, extracting symbolic links and listing files only to directory videos_backup",unzip -l -d videos_backup memo.txt.zip
31
+ 8243,"Retrieve script.py.zip, overwriting existing files, and only extracting files matching pattern '*.jpg' to directory music_library",unzip -o -j -d music_library script.py.zip '*.jpg'
32
+ 4412,Extract files with verbose output from database.sql.zip, unzip -v database.sql.zip
33
+ 2252,Files will be shown sorted by size.,ls -S
34
+ 6861,File compression with gzip, find . -type f -execdir gzip {} \
35
+ 6328,Locate symbolic links, find . -type l
36
+ 323,Clone report.pdf to reports_archive and prompt for permission to overwrite, cp -i report.pdf reports_archive
37
+ 1862,List files sorted by size and modification time with colored output,ls -SltG
38
+ 5091,Look for figurative connections., find . -type l
39
+ 1061,Check for updates and add proposal.docx to executable.exe.zip, zip -f executable.exe.zip proposal.docx
40
+ 965,Extract files and overwrite existing files from document.docx.zip, unzip -o document.docx.zip
41
+ 330,Generate a hard link of report.pdf in photos_backup, cp -l report.pdf photos_backup
42
+ 1017,Compress projects and its contents, zip -r projects projects
43
+ 1087,Zip memo.txt without directory structure, zip -j audio.mp3.zip memo.txt
44
+ 4771,"Archive files image.jpg, document.docx, photo.png into document.docx.zip, preserving paths",zip -r document.docx.zip image.jpg document.docx photo.png
45
+ 7795,"While maintaining its properties, copy contract.pdf to projects_backup and establish a hard link.", cp -p -l contract.pdf projects_backup
46
+ 1297,"Package files video.mp4, report.pdf, database.sql into image.jpg.zip, excluding '*.tmp' files",zip -x '*.tmp' -r image.jpg.zip video.mp4 report.pdf database.sql
47
+ 3060,"Compress files video.mp4, audio.mp3, policy.pdf into memo.txt.zip, quietly, preserving paths, including empty directories",zip -q -r0 memo.txt.zip video.mp4 audio.mp3 policy.pdf
48
+ 4918,Check for corruption with configuration.ini.zip., unzip -t configuration.ini.zip
49
+ 868,"Without asking, make a backup, and force copy executable.exe to videos_backup while maintaining attributes", cp -f -p -b executable.exe videos_backup
50
+ 6108,"If the parent directories and the directories scripts, presentations, and reports don't already exist, create them with verbose output.",mkdir -p -v scripts && mkdir -p -v presentations && mkdir -p -v reports
51
+ 3047,"Package files executable.exe, document.docx, report.pdf into configuration.ini.zip, excluding '*.tmp' files, preserving paths",zip -x '*.tmp' -r configuration.ini.zip executable.exe document.docx report.pdf
52
+ 1488,"While extracting files, extract image.jpg.zip", unzip -q image.jpg.zip
53
+ 2201,"Display every file, even those that are hidden.",ls -a
54
+ 5482,Filter files in templates based on *.mp3 and move them to downloads_archive,"grep ""*.mp3"" templates/* | xargs -I {} mv {} downloads_archive"
55
+ 6213,Extract only newer files from spreadsheet.xlsx.zip, unzip -U spreadsheet.xlsx.zip
56
+ 3540,Enable colorized output,ls -G
57
+ 4581,Look for files with name policy.pdf, find . -name policy.pdf
58
+ 6194,Extract files silently from spreadsheet.xlsx.zip, unzip -q spreadsheet.xlsx.zip
59
+ 5803,Show hidden files and folders in a lengthy format with rich colours and details.,ls -alG
60
+ 5665,"Create directory ""scripts"" and find files matching pattern ""*.exe"" in it.","mkdir scripts && find scripts -name ""**.exe*"""
61
+ 185,"Forcefully move presentation.pptx to photos, overwriting if necessary",mv -f presentation.pptx photos
62
+ 4934,Files from script.py.zip should be extracted into output., unzip -d output script.py.zip
63
+ 4836,Search for files with names containing 'image' and with read permissions for the group,"find . -type f -name ""*image*"" -perm /g=r"
64
+ 1027,Add and move executable.exe to report.pdf.zip, zip -m report.pdf.zip executable.exe
65
+ 7413,"List all the contents in a directory, including any hidden files.",ls -a
66
+ 2215,Provide a human-readable list of file sizes.,ls -h
67
+ 2922,Show non-blank line numbers for document.docx, cat -b document.docx
68
+ 2083,Copy document.docx to output while preserving its attributes, cp -p document.docx output
69
+ 1744,"List all files and directories, including hidden ones",ls -a
70
+ 7179,Move database.sql to documents and provide verbose output,mv -v database.sql documents
71
+ 8156,Show report.pdf contents with repeated empty lines suppressed, cat -s report.pdf
72
+ 8037,Check configuration.ini.zip for errors, zip -T configuration.ini.zip
73
+ 6366,Delete files modified more than 1 year ago, find . -type f -mtime +365 -delete
74
+ 742,"Transfer configuration.ini to output and, if required, prompt before overwriting",cp --interactive configuration.ini output
75
+ 8084,Move files to videos, find . -name spreadsheet.xlsx -exec mv {} videos \
76
+ 8561,Find the presentation.pptx files., find . -name presentation.pptx
77
+ 7855,"Make a list of the files in the ""presentations"" directory after creating it.",mkdir presentations && cp presentations/* projects_backup
78
+ 1864,Sort files by size and modification time in reverse order with colored output,ls -SltrG
79
+ 2859,Locate files smaller than 100KB, find . -size -100k
80
+ 6537,"Archive files photo.png, executable.exe, presentation.pptx into presentation.pptx.zip, excluding '*.tmp' files, using compression level 9",zip -x '*.tmp' -9 presentation.pptx.zip photo.png executable.exe presentation.pptx
81
+ 2572,"Move music to archive, making a backup of all currently stored files.", cp -b -r music archive
82
+ 1219,Print proposal.docx with tabs represented as ^I, cat -T proposal.docx
83
+ 3114,Search for files with names ending in '.doc' and larger than 500KB,"find . -type f -name ""*.doc"" -size +500k"
84
+ 1429,List the contents of photo.png.zip., unzip -l photo.png.zip
85
+ 88,Print inode numbers for each file,ls -i
86
+ 2948,List video.mp4 contents with suppression of repeated empty lines, cat -s video.mp4
87
+ 3123,Show the contents of executable.exe with line numbers,cat -n executable.exe
88
+ 7840,"If the parent directories and directory logs don't already exist, create them.",mkdir -p logs
89
+ 7814,"Using attribute preservation, clone image.jpg to projects_backup, establish a hard link, and create a backup", cp -p -l -b image.jpg projects_backup
90
+ 1127,Move files to documents, find . -name document.docx -exec mv {} documents \
91
+ 5164,Show spreadsheet.xlsx in tabbed mode as \I, cat -T spreadsheet.xlsx
92
+ 5292,Show directory names without contents,ls -d
93
+ 5786,List files in a lengthy format with output that is coloured.,ls -lG
94
+ 8400,Extraction of image.jpg.zip in full, unzip -v image.jpg.zip
95
+ 6325,Locate named pipes, find . -type p
96
+ 4704,Show all control characters for presentation.pptx, cat -A presentation.pptx
97
+ 1502,"When extracting files from report.pdf.zip, ignore paths.", unzip -j report.pdf.zip
98
+ 1346,"Search for files with read, write, and execute permissions for the user",find . -type f -perm -700
99
+ 3024,"Uncompress configuration.ini.zip, testing archive integrity only, verbose output, and listing files only to directory templates_backup",unzip -t -v -l -d templates_backup configuration.ini.zip
100
+ 3238,Take the files out of proposal.docx.zip. disregarding the directory structure, unzip -j proposal.docx.zip
101
+ 3945,Show comprehensive file information,ls -l
102
+ 1022,Compress projects recursively, zip -r projects projects
103
+ 1034,Move contract.pdf into audio.mp3.zip, zip -m audio.mp3.zip contract.pdf
104
+ 7021,Enable output with colors,ls -G
105
+ 6930,Show report.pdf with characters that don't print, cat -v report.pdf
106
+ 601,"List each subdirectory in detail recursively, then tally the total number of directories.","ls -Rd | grep ""/$"" | wc -l"
107
+ 4309,Make a backup of the current files and copy configuration.ini to reports_archive., cp -b -p configuration.ini reports_archive
108
+ 7756,Move contract.pdf with attribute preservation to scripts_backup, cp -p contract.pdf scripts_backup
109
+ 1295,"Archive files image.jpg, document.docx, photo.png into document.docx.zip, preserving paths",zip -r document.docx.zip image.jpg document.docx photo.png
110
+ 7974,Compress projects recursively, zip -r projects projects
111
+ 1322,"Compress files video.mp4, audio.mp3, policy.pdf into memo.txt.zip, quietly, preserving paths, including empty directories",zip -q -r0 memo.txt.zip video.mp4 audio.mp3 policy.pdf
112
+ 2263,Turn on colour output.,ls -G
113
+ 8612,Print the contents of presentation.pptx with non-blank line numbering., cat -b presentation.pptx
114
+ 3455,Display characters for spreadsheet.xlsx that aren't printed, cat -v spreadsheet.xlsx
115
+ 2968,List contents of memo.txt with all control characters displayed, cat -A memo.txt
116
+ 5942,Move the files to reports_archive after extracting them from temp that match *.mp4.,"tar -cvf - -C temp.zip . | tar xvf - -C reports_archive --wildcards ""*.mp4"""
117
+ 1740,Display all files including hidden ones,ls -a
118
+ 3870,"Clone image.jpg to images_backup with attribute preservation, creating a hard link, and making a backup", cp -p -l -b image.jpg images_backup
119
+ 6648,Verify image.jpg.zip's integrity., unzip -t image.jpg.zip
120
+ 7537,"List subdirectories recursively, each with a colour and full description.",ls -RdlG
121
+ 1078,Verify integrity of audio.mp3.zip, zip -T audio.mp3.zip
122
+ 483,Present file sizes in an easily readable way.,ls -h
123
+ 4371,Make a verbose output directory called photos.,mkdir -v photos
124
+ 1730,Print photo.png without any warning errors, cat -q photo.png
125
+ 1662,Show image.jpg with line numbers that aren't blank., cat -b image.jpg
126
+ 5847,"Before replacing downloads with script.py, prompt",mv -i script.py downloads
127
+ 1068,Erase policy.pdf from proposal.docx.zip, zip -d proposal.docx.zip policy.pdf
128
+ 6173,Extract files from document.docx.zip and overwrite existing files, unzip -o document.docx.zip
129
+ 5391,Prompt for confirmation before moving document.docx to presentations,mv -i document.docx presentations
130
+ 1945,Replace archives with photo.png only if it's newer or doesn't already exist,mv -u photo.png archives
131
+ 5702,Files should be displayed in reverse order.,ls -r
132
+ 2847,Look for block devices, find . -type b
133
+ 8402,Take remove the files from spreadsheet.xlsx.zip that provide verbose output., unzip -v spreadsheet.xlsx.zip
134
+ 315,Mirror proposal.docx to music_library and overwrite existing files without seeking permission, cp -f proposal.docx music_library
135
+ 239,"Ask before replacing configuration.ini in downloads, treat destination as file, and show verbose feedback",mv -TiV configuration.ini downloads
136
+ 3905,"Create a directory named 'presentations', copy a file named 'audio.mp3' into it, and then create a symbolic link named 'link' to the file.",mkdir /presentations/ | cp /audio.mp3 /presentations/ | ln -s /presentations/ /link/
137
+ 7897,Extract files with verbose mode enabled from database.sql.zip, unzip -v database.sql.zip
138
+ 4989,"Extract executable.exe.zip, then update your files with the latest versions.", unzip -U executable.exe.zip
139
+ 2753,Change directory to videos_backup and extract files from photo.png.zip, unzip -C videos_backup photo.png.zip
140
+ 1123,Search for files between 1GB and 2GB in size, find . -size +1G -size -2G
141
+ 4618,Search for files modified exactly 30 days ago, find . -mtime 30
142
+ 4606,Delete files with name memo.txt, find . -name memo.txt -exec rm {} \
143
+ 4914,Examine image.jpg.zip for consistency., unzip -t image.jpg.zip
144
+ 5546,Replicate document.docx to projects_backup with hard links, cp -l document.docx projects_backup
145
+ 4335,"Move audio.mp3 to photos_backup, verify overwrite interactively, maintain attributes, and make a backup.", cp -i -p -b audio.mp3 photos_backup
146
+ 1199,Print database.sql contents with line endings, cat -E database.sql
147
+ 5313,"Display files individually, one per line",ls -1
148
+ 1671,List each line ending in image.jpg in the contents., cat -E image.jpg
149
+ 4235,Make a backup of the current files and copy proposal.docx to logs_archive.,cp -b proposal.docx logs_archive
150
+ 3879,"Replicate contract.pdf to videos_backup while retaining its attributes, creating a hard link, and making a backup", cp -p -l -b contract.pdf videos_backup
151
+ 6066,"Using attribute preservation, clone proposal.docx to templates_backup, establish a hard link, and create a backup", cp -p -l -b proposal.docx templates_backup
152
+ 730,Files in backups should be sorted by size before being moved to photos_backup.,ls -S backups | xargs -I {} mv backups/{} photos_backup
153
+ 1183,Display proposal.docx with non-blank line numbers, cat -b proposal.docx
154
+ 5412,Move report.pdf to logs only if it's newer or doesn't already exist,mv -u report.pdf logs
155
+ 221,Verbose: Move database.sql to logs,mv -v database.sql logs
156
+ 2246,Sort files by the date they were last modified.,ls -t
157
+ 5615,Transfer presentation.pptx to documents_backup and interactively confirm overwrite while preserving attributes and creating a backup, cp -i -p -b presentation.pptx documents_backup
158
+ 5229,Show file information in long listing format,ls -l
159
+ 2776,Check for updates and add proposal.docx to presentation.pptx.zip, zip -u presentation.pptx.zip proposal.docx
160
+ 6581,Find files with names containing 'data' and modified more than 30 days ago,"find . -type f -name ""*data*"" -mtime +30"
161
+ 8027,Remove presentation.pptx from proposal.docx.zip, zip -d proposal.docx.zip presentation.pptx
162
+ 4180,"Make a backup of database.sql, regard the destination as a file, don't overwrite, and show verbose output.",mv -bnvT database.sql presentations
163
+ 4923,Extraction of files from report.pdf.zip enabling verbose mode, unzip -v report.pdf.zip
164
+ 5707,Change the default order of sorting.,ls -r
165
+ 8452,Take the files out of proposal.docx.zip. disregarding the directory structure, unzip -j proposal.docx.zip
166
+ 3355,Seek out blocking gadgets, find . -type b
167
+ 5072,"When zipping, disregard paths presentation.pptx.", zip -j report.pdf.zip presentation.pptx
168
+ 6620,"Concatenate document.docx and document.docx, numbering all output lines and showing non-printing characters",cat -n -v document.docx document.docx
169
+ 532,Just show directories.,ls -d
170
+ 700,"Transfer database.sql firmly to projects, ask permission before overwriting, and only move if a newer version is available.",mv -fiu database.sql projects
171
+ 3685,Transfer video.mp4 to scripts as a regular file,mv -T video.mp4 scripts
172
+ 4698,Show tabs as ^I for database.sql, cat -T database.sql
173
+ 3872,"Duplicate database.sql to logs_archive and keep attributes unchanged, creating a hard link, and making a backup", cp -p -l -b database.sql logs_archive
174
+ 3931,"Generate directory ""documents"" and list contents of ""documents"".",mkdir documents && ls documents
175
+ 8046,Zip report.pdf without directory structure, zip -j report.pdf.zip report.pdf
176
+ 3288,Place contract.pdf inside of the archive spreadsheet.xlsx.Zip, zip -u spreadsheet.xlsx.zip contract.pdf
177
+ 2260,Turn on output that is coloured.,ls -G
178
+ 5137,List the lines that don't include a blank in policy.pdf, cat -b policy.pdf
179
+ 6708,Ignore the directory structure and extract the files from contract.pdf.zip., unzip -j contract.pdf.zip
180
+ 7704,Move proposal.docx to photos_backup and request confirmation from the user to see if the files are there.,cp -i proposal.docx photos_backup
181
+ 2111,Mirror spreadsheet.xlsx to backup and backup existing files, cp -b -p spreadsheet.xlsx backup
182
+ 3405,Show line numbers for database.sql that are not blank., cat -b database.sql
183
+ 354,Duplicate documents to output and include all subdirectories, cp -r documents output
184
+ 8523,"If proposal.docx is more recent, update it in audio.mp3.zip.", zip -f audio.mp3.zip proposal.docx
185
+ 6977,Display file sizes in a format that is easy to read,ls -h
186
+ 7945,Extract files without directory structure from image.jpg.zip, unzip -j image.jpg.zip
187
+ 2316,List the files in reverse order based on size and modification time.,ls -Sltr
188
+ 1233,Display contract.pdf with non-printing characters, cat -v contract.pdf
189
+ 5086,Seek for files bearing the document.docx name., find . -name document.docx
190
+ 6771,Make proposal.docx.zip with proposal.docx in it., zip -c proposal.docx.zip proposal.docx
191
+ 1593,Examine policy.pdf.zip for mistakes., zip -T policy.pdf.zip
192
+ 1149,Delete files modified more than 1 year ago, find . -type f -mtime +365 -delete
193
+ 6817,"When zipping, disregard paths proposal.docx.", zip -j video.mp4.zip proposal.docx
194
+ 2860,Look for files exactly 50 bytes in size, find . -size 50c
195
+ 8575,Search for standard files., find . -type f
196
+ 6782,"In executable.exe, update configuration.ini.zip If more recent", zip -f executable.exe.zip configuration.ini
197
+ 6214,Extract and update files with newer versions from presentation.pptx.zip, unzip -U presentation.pptx.zip
198
+ 5799,"List subdirectories recursively, each with a colour and full description.",ls -RdlG
199
+ 5030,Make a fresh archive with executable.exe.zip from executable.exe, zip -c executable.exe.zip executable.exe
200
+ 8421,Take files out of executable.exe.zip and replace any files that already exist., unzip -o executable.exe.zip
201
+ 5909,"Transfer audio.mp3 forcefully to reports, asking for confirmation, and treating destination as a file",mv -ifT audio.mp3 reports
202
+ 2029,Duplicate document.docx to archive keeping all attributes,cp -a document.docx archive
203
+ 8310,Search for files with names starting with 'data' and not owned by the user 'admin',"find . -type f -name ""data*"" ! -user admin"
204
+ 3960,List file sizes in a manner that is comprehensible to people.,ls -h
205
+ 23,Show file sizes in a readable manner,ls -h
206
+ 1649,Display the line counts for script.py, cat -n script.py
207
+ 940,Verbose extraction of contract.pdf.zip, unzip -v contract.pdf.zip
208
+ 7695,Transfer script.py to photos_backup while keeping all properties intact.,cp -a script.py photos_backup
209
+ 496,Recursively list the directory tree,ls -R
210
+ 6995,Display all files and directories recursively,ls -R
211
+ 6128,"Zip the contents of the newly created directory ""backups"" into the file ""spreadsheet.xlsx.zip"".",mkdir backups && zip spreadsheet.xlsx.zip backups/*
212
+ 7647,"Transfer audio.mp3 forcefully to reports, asking for confirmation, and treating destination as a file",mv -ifT audio.mp3 reports
213
+ 3458,Print database.sql while suppressing the output from the buffer., cat -u database.sql
214
+ 2318,"List subdirectories recursively, providing coloured output and comprehensive details.",ls -Rdl
215
+ 7727,Make a copy of policy.pdf and obliterate the current files in documents_backup., cp -f policy.pdf documents_backup
216
+ 3213,Extract memo.txt that is encrypted.Zip file protected with '*.mp3', unzip -P *.mp3 memo.txt.zip
217
+ 7335,Mirror configuration.ini to images_backup with attributes intact and creating a hard link, cp -p -l configuration.ini images_backup
218
+ 1783,Show directory contents recursively,ls -R
219
+ 8679,Show suppressed buffered output for image.jpg, cat -u image.jpg
220
+ 6084,"Make a backup copy of spreadsheet.xlsx and duplicate it to templates_backup with user approval to overwrite, preserve attributes, and overwrite", cp -i -p -b spreadsheet.xlsx templates_backup
221
+ 4995,Extract the files from script.py.zip by changing the directory to output., unzip -C output script.py.zip
222
+ 6595,Find files with names containing 'report' and not executable by others,"find . -type f -name ""*report*"" ! -perm -o=x"
223
+ 4883,Output the first 25 lines of configuration.ini,cat configuration.ini | head -n 25
224
+ 453,"Create directory ""templates"" and move files matching pattern ""*.py"" to it.",mkdir templates && mv **.py* templates
225
+ 1330,"Compress files proposal.docx, report.pdf, contract.pdf into database.sql.zip, quietly, using password 'secure123', preserving paths",zip -q -r -P secure123 database.sql.zip proposal.docx report.pdf contract.pdf
226
+ 5484,Extract files from photos.zip matching *.py and move to logs_archive,"tar -cvf - -C photos.zip . | tar xvf - -C logs_archive --wildcards ""*.py"""
227
+ 8441,"Without showing the results, extract video.mp4.zip", unzip -q video.mp4.zip
228
+ 7238,Transfer executable.exe to projects_backup while maintaining attributes,cp -a executable.exe projects_backup
229
+ 6480,"Unarchive video.mp4.zip, overwriting existing files, to directory photos_backup",unzip -o -d photos_backup video.mp4.zip
230
+ 4141,Only use configuration.ini in place of scripts if it is less than or equal to that directory.,mv -u configuration.ini scripts
231
+ 3497,Display file sizes in human-readable form,ls -h
232
+ 7445,Change the default order of sorting.,ls -r
233
+ 6343,Compress files using gzip, find . -type f -exec gzip {} \
234
+ 2087,Transfer temp and its contents to logs_archive recursively, cp -r temp logs_archive
235
+ 245,"Ask before replacing report.pdf in backups, treat destination as file, and move only if newer",mv -iTu report.pdf backups
236
+ 7692,"Transfer presentations to music_library and, if required, prompt before overwriting",cp -ir presentations music_library
237
+ 5250,List files in reverse order of modification time,ls -r
238
+ 5385,"Move configuration.ini to documents, prompting for confirmation",mv -i configuration.ini documents
239
+ 2515,"In reports_archive, prompt before overwriting memo.txt.", cp -i memo.txt reports_archive
240
+ 4034,"Prior to files, list folders.",ls --group-directories-first
241
+ 6533,"Archive files presentation.pptx, presentation.pptx, report.pdf into memo.txt.zip, using compression level 6, excluding '*.tmp' files",zip -6 -x '*.tmp' memo.txt.zip presentation.pptx presentation.pptx report.pdf
242
+ 4439,Extract files from memo.txt.zip and overwrite existing files, unzip -o memo.txt.zip
243
+ 4938,Files from configuration.ini.zip should be extracted into documents_backup., unzip -d documents_backup configuration.ini.zip
244
+ 7398,"Create directory ""templates"" and remove files matching pattern ""*.mp3"".",mkdir templates && rm **.mp3*
245
+ 5247,List files in reverse order of their names,ls -r
246
+ 6574,Search for files with names containing 'image' and with read permissions for the group,"find . -type f -name ""*image*"" -perm /g=r"
247
+ 5834,"List every file with the word ""backup"" in its name, together with all relevant details.",ls -l *backup*
248
+ 1543,Move image.jpg to proposal.docx.zip and add it., zip -m proposal.docx.zip image.jpg
249
+ 5349,List files sorted by size and modification time in reverse order with colored output,ls -SltrG
250
+ 7066,List files in long format with colored output,ls -lG
251
+ 3182,Take remove the files from database.sql.zip that provide verbose output., unzip -v database.sql.zip
252
+ 3150,Output the first 30 lines of proposal.docx,cat proposal.docx | head -n 30
253
+ 3245,"Extract policy.pdf.zip, but only the most recent files.", unzip -U policy.pdf.zip
254
+ 7821,"Move presentation.pptx to projects_backup, verify overwrite interactively, maintain attributes, and make a backup.", cp -i -p -b presentation.pptx projects_backup
255
+ 4057,Organise files according to when they were last modified and provide file sizes in a legible manner.,ls -ltSh
256
+ 4019,Print the file's inode numbers.,ls -i
257
+ 7388,"Create directories presentations, images, images and parent directories if they do not exist with verbose output",mkdir -p -v presentations && mkdir -p -v images && mkdir -p -v images
258
+ 866,"Recursive copying is used to move archives to music_library, maintaining attributes, and making a backup.", cp -r -p -b archives music_library
259
+ 3353,Look for figurative connections., find . -type l
260
+ 1672,Show script.py with line breaks included, cat -E script.py
261
+ 7874,Check contents of document.docx.zip, unzip -l document.docx.zip
262
+ 4739,Extract database.sql.zip with no password to directory projects_backup,unzip -d projects_backup database.sql.zip
263
+ 6812,Zip contract.pdf without any folder organization, zip -j script.py.zip contract.pdf
264
+ 758,"Before replacing current files, copy report.pdf to music_library and be sure to ask.",cp -i report.pdf music_library
265
+ 4808,"Zip files spreadsheet.xlsx, document.docx, report.pdf into script.py.zip, using compression level 6, verbose output, including empty directories",zip -6 -v -r0 script.py.zip spreadsheet.xlsx document.docx report.pdf
266
+ 2114,Transfer documents to projects_backup and backup existing files, cp -b -r documents projects_backup
267
+ 7437,Display file sizes in comprehensible units for humans.,ls -h
268
+ 6859,Transfer the files to reports, find . -name proposal.docx -execdir mv {} reports \
269
+ 14,Display files with extended information,ls -l
270
+ 4329,"For each file name, create a backup, a hard link, and mirror it to the destination directory while preserving its properties.", cp -p -l -b photo.png documents_backup
271
+ 4877,"Concatenate video.mp4 and presentation.pptx, numbering non-empty output lines",cat -b video.mp4 presentation.pptx
272
+ 6299,Check configuration.ini.zip for errors, zip -T configuration.ini.zip
273
+ 8021,Remove spreadsheet.xlsx from database.sql.zip, zip -d database.sql.zip spreadsheet.xlsx
274
+ 6940,Show photo.png with suppressed buffered output, cat -u photo.png
275
+ 538,Show only the names of the directories; show nothing inside.,ls -d
276
+ 1746,Display hidden files along with normal files,ls -a
277
+ 6302,Ignore paths when zipping photo.png, zip -j document.docx.zip photo.png
278
+ 6311,Search for files with name database.sql, find . -name database.sql
279
+ 4162,"Before forcibly transferring photo.png to images, make a backup of it.",mv -bf photo.png images
280
+ 2471,Move the files listed in images to videos_backup. maintaining the directory structure,find images -type f -exec mv -t videos_backup -- {} +
281
+ 8171,Print proposal.docx with tabs represented as ^I, cat -T proposal.docx
282
+ 4722,List contents of document.docx with buffered output suppression, cat -u document.docx
283
+ 1741,List directory contents including hidden files,ls -a
284
+ 5774,Show directories before files.,ls --group-directories-first
285
+ 1253,Display memo.txt in quiet mode, cat -q memo.txt
286
+ 604,"Extend the format of hidden files and folders, then delete the owner data.","ls -al | awk '{$2=$3=$4=""""; print $0}'"
287
+ 233,Ask before replacing presentation.pptx in videos and treat destination as a file,mv -Ti presentation.pptx videos
288
+ 1562,Make executable.exe.zip that includes report.pdf, zip -c executable.exe.zip report.pdf
289
+ 932,Test presentation.pptx.zip for errors, unzip -t presentation.pptx.zip
290
+ 3721,"Ask before replacing report.pdf in backups, treat destination as file, and move only if newer",mv -iTu report.pdf backups
291
+ 8517,"If executable.exe is more recent, update it in script.py.zip.", zip -f script.py.zip executable.exe
292
+ 4447,Provide password '*.pdf' to extract configuration.ini.zip, unzip -P *.pdf configuration.ini.zip
293
+ 1226,List contents of executable.exe with all control characters displayed, cat -A executable.exe
294
+ 2982,Show buffered output suppressed for report.pdf, cat -u report.pdf
295
+ 318,Transfer presentation.pptx to scripts_backup and conduct a force overwrite, cp -f presentation.pptx scripts_backup
296
+ 5780,Show directories before files.,ls --group-directories-first
297
+ 2691,Extract files from image.jpg.zip into downloads_archive, unzip -d downloads_archive image.jpg.zip
298
+ 4844,Search for directories with names starting with 'backup' and not owned by the user 'admin',"find . -type d -name ""backup*"" ! -user admin"
299
+ 3991,Display files in descending order of size.,ls -S
300
+ 3316,"Out of report.pdf.zip, remove proposal.docx.", zip -d report.pdf.zip proposal.docx
301
+ 8125,Display report.pdf with line numbers, cat -n report.pdf
302
+ 7243,Duplicate document.docx to archive keeping all attributes,cp -a document.docx archive
303
+ 1501,Extract the files from spreadsheet.xlsx.zip without a directory structure., unzip -j spreadsheet.xlsx.zip
304
+ 8499,"After placing configuration.ini inside policy.pdf.zip, remove it.", zip -u policy.pdf.zip configuration.ini
305
+ 321,Duplicate audio.mp3 to backup with user confirmation for overwrite, cp -i audio.mp3 backup
306
+ 7411,Display hidden folders and files,ls -a
307
+ 65,Show colored output,ls -G
308
+ 349,Transfer temp and its contents to logs_archive recursively, cp -r temp logs_archive
309
+ 3717,"Save a backup of database.sql, do not overwrite, and move only if newer",mv -nbu database.sql archives
310
+ 518,Files are shown in order of file size.,ls -S
311
+ 8656,Print audio.mp3 making visible all control characters., cat -A audio.mp3
312
+ 2726,Ignore paths when extracting files from memo.txt.zip, unzip -j memo.txt.zip
313
+ 6349,Find files modified within the last 7 days, find . -mtime -7
314
+ 8461,Replace outdated files from video.mp4.zip with the most recent ones., unzip -U video.mp4.zip
315
+ 3090,Search for files with names ending in '.jpg' or '.png',"find . -type f \( -name ""*.jpg"" -o -name ""*.png"" \)"
316
+ 6210,Extract newer files from contract.pdf.zip, unzip -U contract.pdf.zip
317
+ 8135,Display proposal.docx with non-blank line numbers, cat -b proposal.docx
318
+ 5009,Put backups and its contents in an archive., zip -r backups backups
319
+ 3231,Gently unzip the contents of memo.txt.zip., unzip -q memo.txt.zip
320
+ 3098,Search for files with names containing 'image' and with read permissions for the group,"find . -type f -name ""*image*"" -perm /g=r"
321
+ 5538,Mirror report.pdf to music_library and interactively prompt before replacing files, cp -i report.pdf music_library
322
+ 1090,Zip database.sql without directory structure, zip -j audio.mp3.zip database.sql
323
+ 594,Show hidden files and directories in a lengthy format with sizes that are readable by humans and full information.,ls -alh
324
+ 4900,Contents of executable.exe.zip are listed., unzip -l executable.exe.zip
325
+ 7605,Avoid replacing report.pdf with temp.,mv -n report.pdf temp
326
+ 8407,Files from spreadsheet.xlsx.zip should be extracted into temp_folder., unzip -d temp_folder spreadsheet.xlsx.zip
327
+ 637,"Without asking, move executable.exe firmly to presentations.",mv -f executable.exe presentations
328
+ 1545,Compile and transfer configuration.ini to configuration.ini.zip., zip -u configuration.ini.zip configuration.ini
329
+ 2455,"Request permission before changing audio.mp3 to templates, treat the destination as a file, and provide detailed comments.",mv -TiV audio.mp3 templates
330
+ 1642,File compression with gzip, find . -type f -exec gzip {} \
331
+ 8278,"Compress files presentation.pptx, proposal.docx, proposal.docx into document.docx.zip, compressing with best compression, preserving paths",zip -9 -r document.docx.zip presentation.pptx proposal.docx proposal.docx
332
+ 4078,"Files are sorted by size, file sizes are shown in a format that is understandable by humans, and the final five lines are shown.",ls -lSh | tail -n 5
333
+ 5411,Do not replace scripts with image.jpg,mv -n image.jpg scripts
334
+ 4992,Extract the files from memo.txt.zip by navigating to projects_backup., unzip -C projects_backup memo.txt.zip
335
+ 1739,Show hidden files and directories,ls -a
336
+ 7829,Create a backup by recursively copying images to images_backup while preserving its properties., cp -r -p -b images images_backup
337
+ 6946,Put policy.pdf on silent display., cat -q policy.pdf
338
+ 8569,Seek out blocking gadgets, find . -type b
339
+ 7226,Move files with size greater than 1MB from templates to music_library,find templates -type f -size +1M -exec mv {} music_library \;
340
+ 3720,"Prompt before overwriting database.sql in backups, treat destination as file, and move only if newer",mv -iuT database.sql backups
341
+ 1721,List the contents of video.mp4 while suppressing buffered output., cat -u video.mp4
342
+ 429,"Create a directory named 'presentations', copy a file named 'audio.mp3' into it, and then create a symbolic link named 'link' to the file.",mkdir /presentations/ | cp /audio.mp3 /presentations/ | ln -s /presentations/ /link/
343
+ 2301,List directories before files in the display,ls --group-directories-first
344
+ 2644,"Make ""photos"" the directory and remove ""ignore2.png"" from it.",mkdir photos && ls | grep -v ignore2.png
345
+ 8683,silently list the contents of configuration.ini, cat -q configuration.ini
346
+ 1176,List contents of video.mp4 with line numbers, cat -n video.mp4
347
+ 5978,Make backups of the current files and mirror proposal.docx to archive.,cp -b proposal.docx archive
348
+ 5815,"List each subdirectory in detail recursively, then tally the total number of directories.","ls -Rd | grep ""/$"" | wc -l"
349
+ 8579,Search for files between 1GB and 2GB in size., find . -size +1G -size -2G
350
+ 5211,silently list the contents of report.pdf, cat -q report.pdf
351
+ 5593,Transfer executable.exe to photos_backup and interactively confirm overwrite while preserving attributes, cp -i -p executable.exe photos_backup
352
+ 1615,Look for figurative connections., find . -type l
353
+ 1334,"Compress files spreadsheet.xlsx, audio.mp3, script.py into memo.txt.zip, storing file attributes, excluding '*.tmp' files, silently",zip -X -x '*.tmp' -q memo.txt.zip spreadsheet.xlsx audio.mp3 script.py
354
+ 4189,"Keep a copy of policy.pdf, avoid overwriting, and provide detailed feedback.",mv -nbv policy.pdf logs
355
+ 2760,Compress projects recursively, zip -r projects projects
356
+ 5037,Create a new script.py by archiving report.pdf.zip, zip -c script.py.zip report.pdf
357
+ 7133,Move script.py to documents and replace existing files,mv -f script.py documents
358
+ 3000,Show configuration.ini with error messages suppressed, cat -q configuration.ini
359
+ 1618,Look for gaming devices., find . -type c
360
+ 4750,"Disentangle policy.pdf.zip, excluding exclude.mp4, to directory images_backup",unzip -x exclude.mp4 -d images_backup policy.pdf.zip
361
+ 4498,Compress projects recursively, zip -r projects projects
362
+ 2825,Zip memo.txt without directory structure, zip -j audio.mp3.zip memo.txt
363
+ 8665,Display characters for executable.exe that aren't printed, cat -v executable.exe
364
+ 3412,Print the contents of database.sql with line ends., cat -E database.sql
365
+ 1263,Extract database.sql.zip with no password to directory projects_backup,unzip -d projects_backup database.sql.zip
366
+ 1732,Put policy.pdf on silent display., cat -q policy.pdf
367
+ 1777,Display directory structure recursively,ls -R
368
+ 3668,"Move presentation.pptx to scripts, preserving existing files",mv -n presentation.pptx scripts
369
+ 4113,"Without asking, move executable.exe firmly to presentations.",mv -f executable.exe presentations
370
+ 7609,"If downloads is outdated or nonexistent, substitute spreadsheet.xlsx for it.",mv -u spreadsheet.xlsx downloads
371
+ 346,Transfer image.jpg to backup with attribute preservation, cp -p image.jpg backup
372
+ 4140,"If spreadsheet.xlsx is more recent or does not already exist in documents, move it there.",mv -u spreadsheet.xlsx documents
373
+ 4354,"Without asking, make a backup, and force copy report.pdf to logs_archive while maintaining attributes", cp -f -p -b report.pdf logs_archive
374
+ 2588,"Make a backup copy of presentation.pptx and duplicate it to output with user approval to overwrite, preserve attributes, and overwrite", cp -i -p -b presentation.pptx output
375
+ 6657,Examine audio.mp3.zip for mistakes., unzip -t audio.mp3.zip
376
+ 8178,List contents of executable.exe with all control characters displayed, cat -A executable.exe
377
+ 811,Mirror photos_backup to scripts recursively, cp -r scripts photos_backup
378
+ 2275,Enumerate folders empty of contents.,ls -d
379
+ 8141,Print memo.txt contents with non-blank line numbering, cat -b memo.txt
380
+ 1670,Print the contents of policy.pdf with line ends., cat -E policy.pdf
381
+ 4899,"Display policy.pdf, showing line numbers, non-printing characters, and tabs as spaces, with a '$' at the end of each line",cat -n -vT -e policy.pdf
382
+ 3997,Sort the files according to their sizes.,ls -S
383
+ 921,List files inside presentation.pptx.zip, unzip -l presentation.pptx.zip
384
+ 99,"Display files individually, one per line",ls -1
385
+ 6112,Make a directory called scripts and output verbosely,mkdir -v scripts
386
+ 7548,"Using coloured output, comprehensive information, and human-readable sizes, sort files by size and modification time in reverse order.",ls -SltrhG
387
+ 2697,Extract files from document.docx.zip and overwrite existing files, unzip -o document.docx.zip
388
+ 7014,List files sorted by their sizes,ls -S
389
+ 3034,"Zip files document.docx, presentation.pptx, executable.exe into executable.exe.zip, including empty directories",zip -r0 executable.exe.zip document.docx presentation.pptx executable.exe
390
+ 4132,Transfer photo.png to reports solely in cases where it is not in use or is more recent.,mv -u photo.png reports
391
+ 8552,Pack document.docx without any archive paths, zip -j contract.pdf.zip document.docx
392
+ 4879,Output the first 15 lines of report.pdf,cat report.pdf | head -n 15
393
+ 4519,Update contract.pdf if newer in document.docx.zip, zip -u document.docx.zip contract.pdf
394
+ 6444,List contents of memo.txt with all control characters displayed, cat -A memo.txt
395
+ 4827,Find directories with names starting with 'dir',"find . -type d -name ""dir*"""
396
+ 2249,List the files in order of modification date.,ls -t
397
+ 7519,Provide a complete informational list of every file in the current directory.,ls -al
398
+ 4535,Freshen configuration.ini in document.docx.zip, zip -f document.docx.zip configuration.ini
399
+ 3166,See what's in image.jpg.zip, unzip -l image.jpg.zip
400
+ 7138,Overwrite databases with document.docx without prompting,mv -f document.docx databases
401
+ 6061,"Move document.docx to videos_backup, and if the files are already there, create a backup.", cp -b -i document.docx videos_backup
402
+ 1210,List video.mp4 contents with suppression of repeated empty lines, cat -s video.mp4
403
+ 3087,Find files owned by the user and group *.py,find . -type f -user *.py -group *.py
404
+ 2820,Test video.mp4.zip for errors, zip -T video.mp4.zip
405
+ 3396,Show executable.exe with line numbers that aren't blank., cat -b executable.exe
406
+ 3779,Duplicate audio.mp3 to logs_archive and back up existing files,cp -b audio.mp3 logs_archive
407
+ 1954,Shift video.mp4 to videos treating it like a normal file,mv -T video.mp4 videos
408
+ 3915,Create directory images with verbose output,mkdir -v images
409
+ 7664,"Make a copy of executable.exe, don't replace it, and output verbosely",mv -bnv executable.exe music
410
+ 2357,"Sort all files that start with ""data"" backwards.",ls -r data*
411
+ 33,List files in reverse order of their names,ls -r
412
+ 6959,"List all files, including hidden files",ls -a
413
+ 2183,"Create a ""templates"" directory and list the files within it.",mkdir templates && cp templates/* output
414
+ 3035,"Package files video.mp4, report.pdf, database.sql into image.jpg.zip, excluding '*.tmp' files",zip -x '*.tmp' -r image.jpg.zip video.mp4 report.pdf database.sql
415
+ 3418,Print script.py while preventing the display of several blank lines., cat -s script.py
416
+ 1623,Search for standard files., find . -type f
417
+ 763,Create backups of the current files and clone photo.png to temp_folder.,cp -b photo.png temp_folder
418
+ 3684,Move image.jpg to temp treating it as a normal file,mv -T image.jpg temp
419
+ 7979,Add and move executable.exe to report.pdf.zip, zip -m report.pdf.zip executable.exe
420
+ 2464,Move the files in archives to downloads_archive after filtering them using *.pdf.,"grep ""*.pdf"" archives/* | xargs -I {} mv {} downloads_archive"
421
+ 6232,Zip reports and subdirectories, zip -r reports reports
422
+ 5422,Move image.jpg to temp treating it as a normal file,mv -T image.jpg temp
423
+ 586,Display hidden files and directories with extensive information in a lengthy manner.,ls -al
424
+ 4567,Ignore directory structure when zipping configuration.ini, zip -j photo.png.zip configuration.ini
425
+ 8182,List contents of memo.txt with all control characters displayed, cat -A memo.txt
426
+ 4198,"In music, prompt before overwriting proposal.docx, regard the destination as a file, and only move if it's more recent.",mv -iuT proposal.docx music
427
+ 3133,"Display the contents of video.mp4, showing non-printing characters and tabs as '^I'",cat -vT video.mp4
428
+ 7506,List each file on a single line.,ls -1
429
+ 5661,"Create a new directory called ""backups"" and create symbolic link named ""pointer"" pointing to ""backup"".",mkdir backups && ln -s backup pointer
430
+ 3460,Show image.jpg with suppressed buffered output, cat -u image.jpg
431
+ 2698,Overwrite existing files without prompting when extracting photo.png.zip, unzip -o photo.png.zip
432
+ 7817,"Make a hard link, backup, and copy spreadsheet.xlsx to photos_backup while maintaining its properties.", cp -p -l -b spreadsheet.xlsx photos_backup
433
+ 304,Replicate document.docx to logs_archive and create backups if files exist,cp -b document.docx logs_archive
434
+ 6784,Refresh memo.txt in the zip file script.py., zip -f script.py.zip memo.txt
435
+ 3767,Duplicate document.docx to archive keeping all attributes,cp -a document.docx archive
436
+ 6040,compel Make a backup of the current files and copy document.docx to temp_folder., cp -b -f document.docx temp_folder
train.csv CHANGED
The diff for this file is too large to render. See raw diff
 
val.csv CHANGED
The diff for this file is too large to render. See raw diff