text
stringlengths
26
50
label
stringclasses
30 values
List all files and directories
ls
Show files in the current directory
ls
Display contents of the current directory
ls
View files and directories in the current location
ls
List all files and folders in the current path
ls
Show all files and folders
ls
Display files in the current directory
ls
View contents of the current directory
ls
List files and directories in the current location
ls
Show files in the current path
ls
Change to the specified directory
cd
Move to the home directory
cd
Navigate to the specified directory path
cd
Go to the parent directory
cd
Change to the root directory
cd
Move up one directory level
cd
Change to a specific directory
cd
Go to the previous directory
cd
Move to the home directory of the current user
cd
Navigate to the specified directory location
cd
Create a new directory named 'docs'
mkdir docs
Make a directory named 'projects'
mkdir projects
Create a folder called 'data'
mkdir data
Make a directory named 'images'
mkdir images
Create a new folder named 'scripts'
mkdir scripts
Remove the file named 'example.txt'
rm example.txt
Delete the file called 'temp.txt'
rm temp.txt
Remove the file named 'file1'
rm file1
Delete the file named 'file2'
rm file2
Remove the file named 'backup.txt'
rm backup.txt
Copy file1 to directory /destination
cp file1 /destination
Duplicate file2 to directory /backup
cp file2 /backup
Copy file3 to folder /archive
cp file3 /archive
Duplicate file4 to folder /temp
cp file4 /temp
Copy file5 to directory /images
cp file5 /images
Move file2 to directory /new_location
mv file2 /new_location
Transfer file3 to directory /backup
mv file3 /backup
Move file4 to folder /archive
mv file4 /archive
Transfer file5 to folder /temp
mv file5 /temp
Move file6 to directory /images
mv file6 /images
Display the contents of file 'README.md'
cat README.md
Show the content of file 'notes.txt'
cat notes.txt
Print the contents of file 'data.csv'
cat data.csv
Display the content of file 'script.sh'
cat script.sh
Show the contents of file 'config.ini'
cat config.ini
Search for 'pattern' in file 'data.txt'
grep 'pattern' data.txt
Find occurrences of 'word' in file 'text.txt'
grep 'word' text.txt
Search for 'keyword' in file 'document.txt'
grep 'keyword' document.txt
README.md exists but content is empty. Use the Edit dataset card button to edit it.
Downloads last month
33
Edit dataset card