Fix comment line length

pull/139/head
Igor Chubin 4 years ago
parent dcea8d1745
commit 6bb1e0153c

@ -1,16 +1,17 @@
# carthage # carthage
# A dependency management tool for Cocoa applications (Mac OS X) # A dependency management tool for Cocoa applications (Mac OS X)
# Download the latest version of all dependencies mentioned in Cartfile, and build them: # Download the latest version of all dependencies mentioned in Cartfile,
# and build them
carthage update carthage update
# Update dependencies, but only build for iOS: # Update dependencies, but only build for iOS
carthage update --platform ios carthage update --platform ios
# Update dependencies, but don't build any of them: # Update dependencies, but don't build any of them
carthage update --no-build carthage update --no-build
# Download and rebuild the current version of dependencies (without updating them): # Download and rebuild the current version of dependencies (without updating them)
carthage bootstrap carthage bootstrap
# Rebuild a specific dependency: # Rebuild a specific dependency:

@ -1,7 +1,8 @@
# C++ # C++
# #
# C++ is an object-oriented programming language which provides facilities for low-level memory manipulation. # C++ is an object-oriented programming language which provides facilities for
# It is widely used by big tech companies, such as, Amazon, Facebook, Google, and SpaceX # low-level memory manipulation. It is widely used by big tech companies,
# such as, Amazon, Facebook, Google, and SpaceX
# #
# To Compile: g++ my_script.cpp # To Compile: g++ my_script.cpp
# To Execute: ./a.out # To Execute: ./a.out

@ -1,12 +1,15 @@
# to recover a file in /home/SomeUserName/, assuming /home is on its own partition, run: # extundelete
extundelete /dev/sda4 --restore-file SomeUserName/SomeDirectory # An ext3 and ext4 file undeletion utility
# Recover a file in '/home/UserName', assuming '/home' is on its own partition
extundelete /dev/sda4 --restore-file UserName/SomeDirectory
# Recover an entire directory # Recover an entire directory
extundelete /dev/sda4 --restore-directory SomeUserName/SomeDirectory extundelete /dev/sda4 --restore-directory UserName/SomeDirectory
# For advanced users, to manually recover blocks or inodes with extundelete, # For advanced users, to manually recover blocks or inodes with extundelete,
# debugfs can be used to find the inode to be recovered; # `debugfs` can be used to find the inode to be recovered; additional inodes
# Additional inodes to recover can be listed in an unspaced, comma-separated fashion. # to recover can be listed in an unspaced, comma-separated fashion.
extundelete --restore-inode inode extundelete --restore-inode inode
# recover all deleted files from an entire partition # recover all deleted files from an entire partition

@ -1,5 +1,7 @@
# A simple command-line script (wrapper for nvidia-smi) for querying and monitoring GPU status # gpustat
# to install: pip install gpustat # A simple command-line script for querying and monitoring GPU status.
# It is a wrapper for nvidia-smi.
# To install: `pip install gpustat`
# show GPU statistsics with the processes PIDs and names # show GPU statistsics with the processes PIDs and names
gpustat -cp gpustat -cp

Loading…
Cancel
Save