Use the mattrib command in linux to change or display the properties of the MS-DOS file
Xiaobian to share with you the use of linux mattrib command to change or display MS-DOS file properties, I hope you read this article after a big harvest, let us explore it together!
The mattrib command is used to change or display the attributes of MS-DOS files, which are collections of information recorded on storage media (such as disks and CDs).
mattrib is the mtools command, simulating the attrib command of MS-DOS, which can change the attributes of MS-DOS files.
Syntax format: mattrib [parameter] [file]
Common parameters:
-a/+a Remove/set backup attributes-h/+h Remove/set hidden attributes-r/+r Remove/set read-only attributes-s/+s Remove/set system attributes-/recursive process files containing all subdirectories-X Output results in shorter format
Reference Example
List the attributes of all files on the MSDOS format diskette in slot A:
[root@linuxcool ~]# mattrib a:
Remove hidden attributes from msdos.sys file on disk slot A:
[root@linuxcool ~]# mattrib -h a:msdos.sys
Add read-only attribute to msdos.sys file on disk slot A:
[root@linuxcool ~]# mattrib +r a:msdos.sys
Remove the backup of msdos.sys file on disk A, system properties:
[root@linuxcool ~]# mattrib -a -s a:msdos.sys
Remove the read-only attribute of all files contained in subdirectories on disk slot A:
[root@linuxcool ~]# mattrib -r -/ a:*.* After reading this article, I believe you have a certain understanding of the use of mattrib command in linux to change or display the attributes of MS-DOS files. If you want to know more about it, welcome to pay attention to the industry information channel. Thank you for reading!