[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
slackbook:shell [2012/12/26 02:35 (UTC)] – added bold font mfillpotslackbook:shell [2014/05/21 08:39 (UTC)] (current) – [File and Directory Creation and Deletion] man -> mkdir zithro
Line 196: Line 196:
 "/slack", then "/slack/foo", and finally "/slack/foo/bar" If you "/slack", then "/slack/foo", and finally "/slack/foo/bar" If you
 failed to use the //-p// argument, failed to use the //-p// argument,
-**//man//** would fail to create "/slack/foo/bar"+**//mkdir//** would fail to create "/slack/foo/bar"
 unless the first two already existed, as you saw in the example. unless the first two already existed, as you saw in the example.
  
Line 328: Line 328:
 strength. Unfortunately, achieving that greater compression is a slow strength. Unfortunately, achieving that greater compression is a slow
 and CPU-intensive process, so **//bzip2//**  and CPU-intensive process, so **//bzip2//** 
-typicall takes much longer to run than other alternatives.+typically takes much longer to run than other alternatives.
 ==== XZ / LZMA ==== ==== XZ / LZMA ====
  
  
 The latest compression utility added to Slackware is The latest compression utility added to Slackware is
-**//xz//**, which impliments the LZMA compression+**//xz//**, which implements the LZMA compression
 algorithm. This is faster than **//bzip2//** and algorithm. This is faster than **//bzip2//** and
 often compresses better as well. In fact, its blend of speed and often compresses better as well. In fact, its blend of speed and
 compression strength caused it to replace compression strength caused it to replace
 **//gzip//** as the compression scheme of choice for **//gzip//** as the compression scheme of choice for
-Slackware.  Unfortuantely, **//xz//** does not have+Slackware.  Unfortunately, **//xz//** does not have
 a man page at the time of this writing, so to view available options, a man page at the time of this writing, so to view available options,
 use the //--help// argument.  Compressing files is accomplished use the //--help// argument.  Compressing files is accomplished
Line 446: Line 446:
 **//more//** will display the first few lines of a **//more//** will display the first few lines of a
 text file until your screen is full, then pause.  Once you've read text file until your screen is full, then pause.  Once you've read
-through that screen, you can proceed down one line by pressing ENTER,+through that screen, you can proceed down one line by pressing <key>'ENTER'</key>,
 or an entire screen by pressing <key>'SPACE'</key>, or by a or an entire screen by pressing <key>'SPACE'</key>, or by a
 specified number of lines by typing a number and then the specified number of lines by typing a number and then the
Line 475: Line 475:
  
 </note> </note>
- 
 ==== less ==== ==== less ====
  
Line 493: Line 492:
 Moreover, Slackware also includes a handy little pre-processor for Moreover, Slackware also includes a handy little pre-processor for
 **//less//** called **//less//** called
-''lesspipe.sh'' This allows a user to exectute+''lesspipe.sh'' This allows a user to execute
 **//less//** on a number of non-text files. **//less//** on a number of non-text files.
 ''lesspipe.sh'' will generate text output from ''lesspipe.sh'' will generate text output from
Line 515: Line 514:
 the / key and then your search string, but notice how the search the / key and then your search string, but notice how the search
 results are highlighted for you, and typing <key>'n'</key> will results are highlighted for you, and typing <key>'n'</key> will
-take you to the next occurence of the result while+take you to the next occurrence of the result while
 <key>'N'</key> takes you to the previous occurrence. <key>'N'</key> takes you to the previous occurrence.
  
 slackbook:shell ()