oreomovement.blogg.se

Bash find file
Bash find file







bash find file

5) Extract tar archive to specific folder # tar -xvf archive.tarĪbove command will extract all the files and directories of archive.tar file in the current working directory. To extract an archive file, use ‘-x’ option in the tar command as shown below. Note: In the Compressed tar file we can’t append file or directory. Verify whether file is appended or not, run # tar -tvf archive.tar var/log/auth.log Let’s add /var/log/auth.log file to archive.tar, run # tar -rvf archive.tar /var/log/auth.log ‘-r’ option in the tar command is used to append or add file to existing archive file. In the below example, we are trying to list whether ‘syslog’ file is there in the tar file or not. Listing a specific file or directory from tar file.

bash find file bash find file

Use ‘-t‘ option in tar command to view the content of tar files without extracting it. In above command, ‘-c’ option specify to create a tar file, ‘ -v’ is used for verbose output and ‘-f’ option is used to specify the archive name. Tar file contains all the files and directories of /etc folder and /var/log/syslog file. Let’s create a tar file of /etc directory and ‘/root/anaconda-ks.cfg’ file, run # tar -cvf archive.tar /etc /var/log/syslogĪbove command will create a tar file with the name “archive.tar” in the current folder. Without any further delay, let’s jump into tar command examples. Note: hyphen ( – ) in the tar command while using options is optional. -z, –gzip : Compress and extract the archive through gzip.-J, –xz : Compress and extrach the archive through xz.-j, –bzip2 : Compress and extract archive through bzip2.-C, –directory=DIR: Change to DIR before performing any operations.-X, –exclude-from=file : exclude patterns listed in file.-u, –update : only append files newer than copy in archive.-r, –append : append files to the end of an archive.-d, –diff, –compare : find differences between archive and file system.-x, –extract, –get : extract files from an archive.-t, –list : list the contents of an archive.









Bash find file