Search Results

1
vote

Using ls to list directories and their total sizes

The command you want is 'du -sk' du = "disk usage" The -k flag gives you output in kilobytes, rather than the du default of disk sectors (512-byte blocks). The -s flag will only li …
0
votes

Tar a specific folder

Something like this should do the trick: tar cf tarfile folder This will create a tar image of "folder" and put it in the file "tarfile" The "cf" are the o …