You need to use the rm command. It tries to remove the files specified on the command line. Use the rm command to delete files and directories on SUSE Enterprise Linux. This page shows how to delete and remove files on SUSE Enterprise Linux.
Command to delete and remove files on SUSE Enterprise Linux
The syntax is as follows for the rm and unlink command to remove files on SUSE Enterprise Linux:
- Open the SUSE Enterprise terminal application (bash shell)
- Type any one of the following command to delete a file named suse.nixcraft.txt in the current directory
- rm suse.nixcraft.txt
OR
unlink suse.nixcraft.txt
Let use see all rm command options to delete and remove files on SUSE Enterprise Linux.
Delete multiple files
Type the following command to delete the file named delta.txt, bar.doc, and dance.jpg located in the current directory:
vivek@suse-nixcraft:~> rm delta.txt bar.doc dance.jpg
You can specify path too. If a file named delta.txt located in /tmp/ directory, you can run:
vivek@suse-nixcraft:~> rm /tmp/delta.txt
vivek@suse-nixcraft:~> rm /tmp/delta.txt /home/vivek/dance.jpg /home/vivek/data/bar.doc
SUSE Enterprise Linux delete a file and prompt before every removal
To get confirmation before attempting to remove each file pass the -i option to the rm command on SUSE Enterprise Linux:
vivek@suse-nixcraft:~> rm -i filename
vivek@suse-nixcraft:~> rm -i delta.txt
Force rm command on SUSE Enterprise Linux to explain what is being done with file
Pass the -v option as follows to get verbose output on SUSE Enterprise Linux box:
vivek@suse-nixcraft:~> rm -v filename
vivek@suse-nixcraft:~> rm -v cake-day.jpg
SUSE Enterprise Linux delete all files in folder or directory
You need to pass the following options:
vivek@suse-nixcraft:~> rm -rf dir1
vivek@suse-nixcraft:~> rm -rf /path/to/dir/
vivek@suse-nixcraft:~> rm -rf /home/vivek/oldschoolpics/
It will remove all files and subdirectories from a directory. So be careful. Always keep backups of all important data on SUSE Enterprise Linux.
SUSE Enterprise Linux delete file begins with a dash or hyphen
If the name of a file or directory or folder starts with a dash (- or hyphen --), use the following syntax:
vivek@suse-nixcraft:~> rm -- -filename
vivek@suse-nixcraft:~> rm -- --filename
vivek@suse-nixcraft:~> rm -rf --dirname
vivek@suse-nixcraft:~> rm ./-file
vivek@suse-nixcraft:~> rm -rf ./--dirname
Do not run ‘rm -rf /‘ command as an administrator/root or normal SUSE Enterprise Linux user
rm -rf (variously, rm -rf /, rm -rf *, and others) is frequently used in jokes and anecdotes about SUSE Enterprise Linux disasters. The rm -rf / variant of the command, if run by an administrator, would cause the contents of every writable mounted filesystem on the computer to be deleted. Do not try these commands on SUSE Enterprise Linux:
vivek@suse-nixcraft:~> rm -rf /
vivek@suse-nixcraft:~> rm -rf *
- How to delete and remove files on Fedora Linux
- How to delete and remove files on CentOS Linux
- How to delete and remove files on SUSE Enterprise Linux
- How to delete and remove files on Ubuntu Linux
- How to delete and remove files on RHEL (Red Hat) Linux
- How to delete and remove files on Arch Linux
- How to delete and remove files on Alpine Linux
- How to delete and remove files on Debian Linux
🐧 0 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |