Add comments to computer partitioning script
This commit is contained in:
parent
777e35ba29
commit
ce49475126
1 changed files with 3 additions and 0 deletions
|
@ -1,11 +1,13 @@
|
|||
#!/bin/bash
|
||||
{
|
||||
# Delete placeholders for swap and Linux partition
|
||||
echo "d";
|
||||
echo "2";
|
||||
|
||||
echo "d";
|
||||
echo "3";
|
||||
|
||||
# Create swap partition
|
||||
echo "n";
|
||||
echo "";
|
||||
echo "";
|
||||
|
@ -15,6 +17,7 @@
|
|||
echo "2";
|
||||
echo "19";
|
||||
|
||||
# Fill remaining space with Linux partition
|
||||
echo "n";
|
||||
echo "";
|
||||
echo "";
|
||||
|
|
Loading…
Reference in a new issue