File: TAR

package info (click to toggle)
xbs 0-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 444 kB
  • ctags: 333
  • sloc: ansic: 2,754; csh: 55; makefile: 54; perl: 15
file content (16 lines) | stat: -rwxr-xr-x 337 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/csh -f
#  makes a tar file BS.tar.Z with all relevant files
   
   echo 'Making tar file for xbs...'

   rm -f BS.tar.Z
   rm -f BS.tar

#   tar -cvf BS.tar README xbs.c *.h bs_icon *.bs *.mv cx
   tar -cvf BS.tar README License TAR xbs.c *.h bs_icon *.bs *.mv cx* Cha*
   ls -l BS.*
   
   compress BS.tar
   ls -l BS.*

   exit