Horje
how to make numbered directories in linux Code Example
how to make numbered directories in linux
# directories from s1 to s50
for i in {1..50}; do
  mkdir s"$i"
done
# or
mkdir s{1..50}
#or
mkdir $(printf "s%02i " $(seq 1 50))




Shell

Related
shell play mp3 Code Example shell play mp3 Code Example
how do you merge two git repositories Code Example how do you merge two git repositories Code Example
Modify .env File in Laravel Code Example Modify .env File in Laravel Code Example
com.android.ddmlib.InstallException: INSTALL_FAILED_VERSION_DOWNGRADE Code Example com.android.ddmlib.InstallException: INSTALL_FAILED_VERSION_DOWNGRADE Code Example
Remplace Placeholder with shell command Code Example Remplace Placeholder with shell command Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9